- Clone this repo
cd
to repo directorynpm install
- note: if install fails, run
npm uninstall sqlite3
,npm install
thennpm install sqlite3
- note: if install fails, run
npm run dev
- view the app on
http://localhost:3000
- view the app on
- Make a new feature branch
git checkout -b [featureBranch name]
- Make your changes
- Stage and commit your changes
- Checkout local
main
branch - Pull from Github
main
branchgit pull
- Checkout local
[featureBranch name]
and merge from localmain
branchgit merge main
- Fix any merge conflicts and commit
- Push your local branch to Github
git push [featureBranch name]
- Make a pull request from your
[featureBranch name]
branch to themain
branch