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