release: publish saldo 0.1.0

This commit is contained in:
2026-04-21 21:17:36 +02:00
commit 6f5e704739
95 changed files with 9196 additions and 0 deletions
Executable
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env sh
set -eu
cd /app/code
export FLASK_APP="${FLASK_APP:-wsgi:app}"
export SALDO_DATA_DIR="${SALDO_DATA_DIR:-/app/data}"
mkdir -p "${SALDO_DATA_DIR}"
python -m flask db upgrade
python -m flask seed
exec gunicorn -c gunicorn.conf.py wsgi:app