- Check this repo out.
cp .env.example .env.developmentand fill in the required environment variablesyarn installyarn dev
-
Create feature branch from
mainbranch:git checkout main git fetch origin git pull --rebase git checkout -b [feature-branch] -
Develop, stage, and commit your changes:
git add . git commit -am [message] or yarn commit -
Push your changes to Github:
git push origin [feature-branch] -
Open a pull request and request reviews :)