1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-19 18:31:16 +00:00
AdvLabDB/init.sh

8 lines
232 B
Bash
Raw Normal View History

2023-02-02 12:39:58 +00:00
#!/bin/bash
# Generate secrets if the secrets file does not already exist
./manage.py setup generate-secrets
# Start the server
gunicorn --bind "0.0.0.0:80" --workers "5" --log-file "/volumes/logs/gunicorn.log" "run:create_app()"