# node.js : v16.18.1
# Rename frontend/example.env to frontend/.env
cd frontend
yarn install
yarn start
# python : v3.9.5
cd backend
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver 0.0.0.0:8000
# redis-server should be running in the background.
cd backend
daphne -b 0.0.0.0 -p 8001 FITogether.asgi:application
cd frontend
yarn test --coverage --watchAll=false
cd backend
coverage run --source='.' manage.py test
coverage report
cd backend
python manage.py seed_users -n 10
...
You can find commands to add dummy data at here.