dea8773ff6
Adds a iframe view for apps in the dashboard. Makes it usable for our setup. Co-authored-by: Philipp Rothmann <philipprothmann@posteo.de> Co-authored-by: viehlieb <pf@pragma-shift.net> Reviewed-on: #1
6 lines
No EOL
164 B
Bash
Executable file
6 lines
No EOL
164 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
env
|
|
flask db upgrade
|
|
gunicorn app:app -b 0.0.0.0:5000 --workers "$(nproc)" --reload --capture-output --enable-stdio-inheritance --log-level DEBUG |