add basic testdata

This commit is contained in:
j3d1 2024-12-21 20:24:18 +01:00
parent 962317884f
commit 3fb21d2258
3 changed files with 92 additions and 2 deletions

View file

@ -3,7 +3,7 @@ services:
build:
context: ../../core
dockerfile: ../deploy/dev/Dockerfile.backend
command: bash -c 'python manage.py migrate && python manage.py runserver 0.0.0.0:8000'
command: bash -c 'python manage.py migrate && python testdata.py && python manage.py runserver 0.0.0.0:8000'
environment:
- HTTP_HOST=core
- DB_HOST=db
@ -13,6 +13,7 @@ services:
- DB_PASSWORD=system3
volumes:
- ../../core:/code
- ../testdata.py:/code/testdata.py
ports:
- "8000:8000"
depends_on: