From 35e0d0a7830ee9e56721df9d188498466950dda7 Mon Sep 17 00:00:00 2001 From: elpatron Date: Tue, 18 Mar 2025 12:28:46 +0100 Subject: [PATCH] =?UTF-8?q?Beispiel-Umgebungsvariablen=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.example | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..e0f9d49 --- /dev/null +++ b/.env.example @@ -0,0 +1,16 @@ +# Flask-Konfiguration +FLASK_APP=app.py +FLASK_ENV=development +SECRET_KEY=your-secret-key-here + +# Datenbank-Konfiguration +DATABASE_URL=sqlite:///customers.db + +# Authentifizierung +STATIC_PASSWORD=your-static-password-here + +# IP-Bereiche für direkten Zugriff (ohne Login) +ALLOWED_IP_RANGES=192.168.0.0/24,192.168.177.0/24,213.178.68.218/29 + +# Logging-Konfiguration +LOG_LEVEL=INFO