docker compose up --build
The SQLite file is in .gitignore, so after running the previous command, run
docker compose exec backend manage.py migrate
Once we start making level, we can store level data in a json file, like /backend/fixtures/levels.json
docker compose exec backend python manage.py loaddata fixtures/levels.json
docker compose up
docker compose down
React frontend once running here:
http://localhost:3000/
Django backend once running here:
http://localhost:8000/