# Server Configuration FRONTEND_PORT=3000 BACKEND_PORT=8080 DB_PORT=5432 DRAGONFLY_PORT=6379 GIN_MODE=debug # Database Configuration DB_TYPE=postgres DB_HOST=localhost DB_PORT=5432 DB_USER=trackeep DB_PASSWORD=your_password_here DB_NAME=trackeep DB_SSL_MODE=disable # DragonflyDB Configuration DRAGONFLY_ADDR=dragonfly:6379 DRAGONFLY_PASSWORD=your_dragonfly_password_here # JWT Configuration (also used for encryption) JWT_SECRET=your_jwt_secret_here_64_hex_characters_long_exactly JWT_EXPIRES_IN=24h # File Upload Configuration UPLOAD_DIR=./uploads MAX_FILE_SIZE=10485760 # CORS Configuration CORS_ALLOWED_ORIGINS=* # Demo Mode Configuration VITE_DEMO_MODE=false # AI Services Configuration SEARCH_API_PROVIDER=demo SEARCH_RESULTS_LIMIT=10 # Auto Update Configuration AUTO_UPDATE_CHECK=false UPDATE_CHECK_INTERVAL=24h PRERELEASE_UPDATES=false