inital commit

This commit is contained in:
2026-05-17 18:29:30 -05:00
parent b827236fe2
commit 7c1e18bd59
4683 changed files with 159402 additions and 1 deletions

8
docker/entrypoint.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -euo pipefail
uv sync --no-dev
uv run python manage.py migrate --noinput
uv run python manage.py seed_templates
PORT="${PORT:-8000}"
uv run python manage.py runserver "0.0.0.0:${PORT}"