feat: initialize database with demo data on first run and update README
Some checks failed
Backend CI / lint-and-test (push) Failing after 1m33s
Frontend CI / lint-and-build (push) Successful in 17s

This commit is contained in:
2025-10-11 21:52:30 +02:00
parent 25ca7ab196
commit f9086d2d04
4 changed files with 27 additions and 4 deletions

View File

@@ -1,5 +1,3 @@
version: "3.9"
services:
db:
build:
@@ -27,6 +25,7 @@ services:
DATABASE_URL: postgresql+psycopg://railgame:railgame@db:5432/railgame_dev
TEST_DATABASE_URL: postgresql+psycopg://railgame:railgame@db:5432/railgame_test
REDIS_URL: redis://redis:6379/0
INIT_DEMO_DB: "true"
depends_on:
- db
- redis