first commit

This commit is contained in:
flowerstonezl
2026-05-11 19:34:35 +08:00
commit c90b10cd5a
89 changed files with 6142 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#!/bin/sh
set -e
mkdir -p "$(dirname "${SQLITE_PATH:-/data/db.sqlite3}")" "${MEDIA_ROOT:-/data/media}"
python manage.py migrate --noinput
python manage.py collectstatic --noinput
exec gunicorn ourstory.wsgi:application --bind 0.0.0.0:8000 --workers 2