From f85c05ca9aefbc959e0681c8ddef97415c87ab96 Mon Sep 17 00:00:00 2001 From: Steve Dogiakos Date: Fri, 4 Apr 2025 14:55:38 -0600 Subject: [PATCH] Fix location of DATABASE_PATH in the example.env --- example.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example.env b/example.env index 69dafe0..0f338b7 100644 --- a/example.env +++ b/example.env @@ -3,7 +3,7 @@ PORT=8000 # Flask environment setting (production) FLASK_ENV=production # Path to the SQLite database (this file will be stored in the mounted /data volume) -DATABASE_PATH=/data/scripts/guestbook.db +DATABASE_PATH=/data/guestbook.db # Number of Gunicorn workers (adjust as needed) GUNICORN_WORKERS=3 PID=1000