ui fixes, input fixes, better dev workflow
All checks were successful
Deploy / deploy (push) Successful in 2m2s
Security Tests / security-non-db (push) Successful in 20s
Security Tests / security-db (push) Successful in 24s

This commit is contained in:
2026-03-10 23:01:44 -05:00
parent 809b75ea4e
commit 72334b2583
19 changed files with 319 additions and 61 deletions

14
scripts/dev-up.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -euo pipefail
ENV_FILE="${ENV_FILE:-.env.localdev}"
if [[ ! -f "$ENV_FILE" ]]; then
echo "Missing $ENV_FILE"
echo "Copy .env.localdev.example -> .env.localdev and fill secrets/passwords first."
exit 1
fi
docker compose --env-file "$ENV_FILE" up -d --build
echo "Local stack started with $ENV_FILE"