We'd love to accept your contributions and help make this project even better than it is today!
As a contributor, here are the guidelines we would like you to follow:
- Getting started
- Commit Messages Guidelines
- Documentation Guidelines
- Dependencies Guidelines
- Dev mode vs Prod mode
git clone https://github.com/hdorgeval/learn-avesta.git
cd learn-avesta
npm install
npm start
open localhost:3000
npm run preview
open localhost:5000
If you are using VS Code, it is recommended to install the recommended extensions.
Commit messages should follow the Semantic Commit Messages format:
label(namespace): title
description
footer
chore
- build-related work, a change in the package.json file, a change in a configuration file or a change to a script file.docs
- changes to docs, e.g.docs(api.md): ..
to change documentation.feat
- a new feature.fix
- a bug fix.refactor
- a code change that neither fixes a bug nor adds a featurestyle
- a change in the code style: spaces/alignment/wrapping etc.test
- adding missing tests or correcting existing tests.
- namespace is put in parentheses after label and is mandatory. Must be lowercase.
- title is a brief summary of changes.
- description is optional, new-line separated from title and is in present tense.
- footer is optional, new-line separated from description and contains "fixes" / "references" attribution to GitHub issues.
- footer should also include "BREAKING CHANGE" if current API clients will break due to this change. It should explain what changed and how to get the old behavior.
Example:
fix(page): fix page.pizza method
This patch fixes page.pizza so that it works with iframes.
Fixes #123, Fixes #234
BREAKING CHANGE: page.pizza now delivers pizza at home by default.
To deliver to a different location, use "deliver" option:
`page.pizza({deliver: 'work'})`.
If you are not sure about how to label the commit, or how many files to put in the same commit, you can look at the commits' history.
Every commit, once pushed, goes directly into production. So if you are not sure of what you have done, run this npm script before pushing all commits: auto-commit-skip-netlify
.
- You should follow this GitHub Guide on Markdown
- Comments inside code should be generally avoided. If the code would not be understood without comments, consider re-writing the code to make it self-explanatory.
For all dependencies (both production and development):
- Do not add a dependency if the desired functionality is easily implementable.
- If adding a dependency, it should be well-maintained and trustworthy.
A barrier for introducing new production dependencies is especially high:
- Do not add production dependency unless it's critical to project success.
If you change/add a React component, or if you change any CSS style, please run the website in both dev mode with npm start
and prod mode with npm run preview
, and ensure that the website renders the same in both mode.
Always run the build
script before pushing:
npm run build