Files
counter/env.example
aovantsev 4ae5bf6a81
Some checks failed
continuous-integration/drone/push Build is failing
add logging
2025-10-08 21:00:23 +03:00

19 lines
430 B
Plaintext

# Database Configuration
DATABASE_URL=postgres://postgres:password@localhost:5432/counter_db?sslmode=disable
# JWT Configuration
JWT_SECRET=your-super-secret-jwt-key-change-in-production
# Server Configuration
PORT=8080
METRICS_PORT=9090
GIN_MODE=release
# Logging Configuration
LOG_LEVEL=info
LOG_DIR=/app/logs
LOG_VOLUME=counter_logs
# Frontend Configuration (for development)
REACT_APP_API_URL=http://localhost:8080/api/v1