Bootstrap Weirsøe Party Protocol with initial game model and workflow

This commit is contained in:
2026-02-27 12:09:21 +01:00
commit fa1c951c8c
6010 changed files with 762251 additions and 0 deletions

12
infra/env/.env.prod.example vendored Normal file
View File

@@ -0,0 +1,12 @@
DJANGO_SECRET_KEY=change-me-prod
DJANGO_DEBUG=false
DJANGO_ALLOWED_HOSTS=party.weircon.dk
DB_ENGINE=django.db.backends.mysql
DB_NAME=wpp_prod
DB_USER=wpp_prod
DB_PASSWORD=change-me
DB_HOST=127.0.0.1
DB_PORT=3306
TEST_DB_NAME=
CHANNEL_REDIS_HOST=127.0.0.1
CHANNEL_REDIS_PORT=6379

12
infra/env/.env.test.example vendored Normal file
View File

@@ -0,0 +1,12 @@
DJANGO_SECRET_KEY=change-me-test
DJANGO_DEBUG=true
DJANGO_ALLOWED_HOSTS=*
DB_ENGINE=django.db.backends.mysql
DB_NAME=wpp_test
DB_USER=wpp_test
DB_PASSWORD=change-me
DB_HOST=127.0.0.1
DB_PORT=3306
TEST_DB_NAME=wpp_test
CHANNEL_REDIS_HOST=127.0.0.1
CHANNEL_REDIS_PORT=6379