.env.example 428 B

12345678910111213
  1. # Flask Configuration
  2. FLASK_CONFIG=production
  3. # Security Keys (MUST change in production!)
  4. SECRET_KEY=your-super-secret-key-change-this
  5. JWT_SECRET_KEY=your-jwt-secret-key-change-this
  6. # PostgreSQL Database URL
  7. # Format: postgresql://username:password@host:port/database
  8. DATABASE_URL=postgresql://postgres:password@localhost:5432/work_statistics
  9. # Optional: CORS origins (comma-separated)
  10. # CORS_ORIGINS=https://yourdomain.com