From af1e74294cf5b2aa1b637a781a7072b0426f5c52 Mon Sep 17 00:00:00 2001 From: Phlogi Date: Wed, 27 Aug 2025 14:20:05 +0200 Subject: [PATCH] feat(config): add logging configuration to .env.example - Add LOG_LEVEL environment variable with possible values and usage guidance - Improve redis host documentation for docker-compose compatibility --- .env.example | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 227381e..e229325 100644 --- a/.env.example +++ b/.env.example @@ -11,6 +11,7 @@ HOST=0.0.0.0 # Redis connection (external or internal). +# Host name 'redis' works with docker-compose.yml setup REDIS_HOST=redis REDIS_PORT=6379 REDIS_DB=0 @@ -56,4 +57,9 @@ GOOGLE_CLIENT_SECRET= # GitHub SSO (get from GitHub Developer Settings) GITHUB_CLIENT_ID= -GITHUB_CLIENT_SECRET= \ No newline at end of file +GITHUB_CLIENT_SECRET= + +# Log level for application logging. +# Possible values: debug, info, warning, error, critical +# Set to 'info' or 'warning' for general use. Use 'debug' for troubleshooting. +LOG_LEVEL=info \ No newline at end of file