# Backend Environment Variables # Copy this file to .env and adjust values for local development # Whether to remove images when starting the server (cleanup) REMOVE_IMAGES=false # Node.js environment (development, production, test) NODE_ENV=development # Port for the backend server PORT=5000 # Admin Session Secret (IMPORTANT: Change in production!) # Generate with: openssl rand -base64 32 ADMIN_SESSION_SECRET=change-me-in-production # Telegram Bot Configuration (optional) TELEGRAM_ENABLED=false # Send test message on server start (development only) TELEGRAM_SEND_TEST_ON_START=false # Bot-Token from @BotFather # Example: 123456789:ABCdefGHIjklMNOpqrsTUVwxyz1234567890 TELEGRAM_BOT_TOKEN=your-bot-token-here # Chat-ID of the Telegram group (negative for groups!) # Get via: https://api.telegram.org/bot/getUpdates # Example: -1001234567890 TELEGRAM_CHAT_ID=your-chat-id-here # Database settings (if needed in future) # DB_HOST=localhost # DB_PORT=3306