From fc94d54d7998e8231c68a4955fdb725841209b88 Mon Sep 17 00:00:00 2001 From: Peter Stockings Date: Sun, 22 Feb 2026 22:57:24 +1100 Subject: [PATCH] Add support for deployment via dokku --- Procfile | 1 + requirements.txt | 1 + 2 files changed, 2 insertions(+) create mode 100644 Procfile diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..20c8080 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: gunicorn run:app diff --git a/requirements.txt b/requirements.txt index d97274d..3ef6680 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ flask==3.1.0 +gunicorn==23.0.0 psycopg2-binary==2.9.10 python-dotenv==1.0.1 werkzeug==3.1.3