Install requirements:
poetry installCreate local configuration files
cp .env_example .env
cp local_settings_example.py local_settings.pyPerform Database Migrations
poetry run python manage.py migrateRun Redis
docker run --name=redis --publish=6379:6379 --hostname=redis --restart=on-failure --detach redis:latestStart Server
poetry run python manage.py runserver 127.0.0.1:8000Create requirements.txt
poetry export -f requirements.txt --without-hashes -o /src/requirements.txt Create new migrations
poetry run python manage.py makemigrationsTestdata is provided as a fixture:
poetry run python manage.py loaddata DSTBundesliga/apps/leagues/fixtures/Season2020Testdata.json