We are the JumboCode team working on a check in system for the Boston Athletics Association (BAA) for Spring 2017 at Tufts University.
- Yuki Zaninovich
- Jenna Kubiak
- Dani Kupfer
- Ian Luo
- Ryan Osgood
- Spencer Perry
- Julia Grace
- Michael Morisi
- Andrew Hoiberg
- Shanshan Duan
- Tati Doyle
- Pulkit Jain
- Phillip Wang
- Brendan Fahey
- Emily Sim
- Vivian Chen
For this project, we will maintain two branches, master
and dev
. The master branch will contain working production-ready code at all times. Do not commit directly to master! (unless it's small). Instead commit to dev
and when it's ready to go, merge it into master. Please fork other development branches as needed (fork it from dev)
- To checkout dev:
git fetch && git checkout dev
- To commit:
git add --all && git commit -m "Meaningful message here" && git push origin dev
- Merge to master:
git checkout master && git merge dev && git push origin master
- When you only wanna merge certain commits:
git checkout master && git cherry-pick COMMIT-HASH && git push origin master
- How to create other branches
Specific instructions for setting up this repo is in each folder (i.e. back-end/README.md and front-end/README.md). In order to run the backend Django server, follow the back-end folder's instructions. If you'd like to run an emulation of the front-end mobile app, you would need to follow the back-end instruction first, followed by setting up the mobile dev environment using the front-end instructions.