7 lines
91 B
Bash
Raw Permalink Normal View History

2024-01-30 11:54:51 +01:00
#!/bin/sh
2024-01-31 14:53:04 +01:00
gunicorn 'Run:exposed_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