7 lines
83 B
Bash
Raw Normal View History

2024-01-30 11:54:51 +01:00
#!/bin/sh
2024-01-31 13:49:14 +01:00
gunicorn 'Run:app' --bind 0.0.0.0:8080 --log-level=debug --workers=4
2024-01-30 11:54:51 +01:00
2024-01-30 15:49:06 +01:00
2024-01-30 15:49:37 +01:00