From 4797b363cb82487f7589481d7a6738d1d2f58f97 Mon Sep 17 00:00:00 2001 From: elpatron Date: Mon, 24 Mar 2025 09:35:57 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20Korrigiere=20Datenbankpfad=20f=C3=BCr=20?= =?UTF-8?q?Docker-Container?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 72d96b2..df375d3 100644 --- a/app.py +++ b/app.py @@ -16,7 +16,7 @@ app = Flask(__name__, static_folder='static') app.config['SECRET_KEY'] = os.environ.get('SECRET_KEY', 'dev') app.config['ALLOWED_IP_RANGES'] = os.getenv('ALLOWED_IP_RANGES', '192.168.0.0/16,10.0.0.0/8').split(',') app.config['VERSION'] = '1.2.20' -app.config['DATABASE'] = os.path.join(app.instance_path, 'customers.db') +app.config['DATABASE'] = 'data/customers.db' app.config['DATABASE_TIMEOUT'] = 20 app.config['DATABASE_POOL_SIZE'] = 5