9 lines
210 B
Bash
Executable File
9 lines
210 B
Bash
Executable File
#!/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}"
|