Hack4Impact Cal Poly nonprofit project for Paso Robles Youth Arts Center
| Name | Role |
|---|---|
| Jillian Quinn | Tech Lead |
| Reilly Salkowski | Product Manager |
| Skylar Kurth | Designer |
| Amelia Bruscia | Frontend Developer |
| Jon Banh | Developer |
| Nestor Martinez | Backend Developer |
| Nicholas Tan | Backend Developer |
| Tessa Tapmongkol | Frontend Developer |
$ git clone git@github.com:hack4impact-calpoly/pryac.git
npm i in both the backend and frontend directories
cd backend
`npm run dev'
cd frontend
`npm start'
Please name your branches relevant to the feature you are working on.
$ git checkout -b new_branch_name
$ git checkout your_branch_name
$ git fetch
$ git merge remotename/branchname
OR do it in one step:
$ git pull remotename branchname
After making edits, to see what files have changed, what files git is tracking, and what files have been staged for commit:
$ git status
$ git add .
$ git add your_file_name
$ git rm your_file_name
$ git commit -m '#[issue number] and short description of changes'
$ git push -u origin your_branch_name
On GitHub, navigate to the branches tab and select the ‘New Pull Request’ button
Write a comment of what your change was and write the issue number so that it links together
Add @JillianQuinn as a reviewer