Introduce tenant-scoped Space/SpaceMembership with list and detail views. Document markdown-in-Forgejo as content SoR (ADR-0002). Run migrations on container start so app.coulomb.social picks up the new tables.
4 lines
130 B
Bash
Executable file
4 lines
130 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
python manage.py migrate --noinput
|
|
exec gunicorn coulomb_social.wsgi:application --bind 0.0.0.0:8000 --workers 2
|