Scoreboard for the instrumented projectile
Backend
cd backend
Install dependencies: pip install -r requirements.txt
Initialize database:
python manage.py makemigrations
python manage.py migrate
Run server: python manage.py runserver
Frontend
cd frontend
Install dependencies: npm i
Run server: npm start
Rebasing to Develop
Try to always work on the latest version of develop, if possible.
Get updated repository: git fetch
If you have uncommitted code: git stash
Rebasing to develop: git rebase origin/develop
Retrieve uncommited code: git stash pop