682b538e16
We add a rudimentary deployment setup based on gunicorn and systemd.
5 lines
110 B
Bash
Executable file
5 lines
110 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
poetry run gunicorn -b "localhost:${PORT}" --timeout 120 'webapp.app'
|