-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
24 lines (19 loc) · 766 Bytes
/
Copy path.env.example
File metadata and controls
24 lines (19 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Flask Configuration
SECRET_KEY=your-secret-key-here
FLASK_ENV=development
# Database Configuration
MONGO_URI=mongodb://localhost:27017/ticketdb
# Google OAuth Configuration
# Get these from Google Cloud Console: https://console.cloud.google.com/
GOOGLE_CLIENT_ID=your-google-client-id
GOOGLE_CLIENT_SECRET=your-google-client-secret
# Admin Email Configuration
# Comma-separated list of admin email addresses
ADMIN_EMAILS=admin1@company.com,admin2@company.com
# Optional: Production Settings
# SESSION_COOKIE_SECURE=True # Set to True in production with HTTPS
# SESSION_COOKIE_HTTPONLY=True
# SESSION_COOKIE_SAMESITE=Lax
# PERMANENT_SESSION_LIFETIME=86400 # 24 hours in seconds
# Optional: File Upload Settings
# MAX_CONTENT_LENGTH=10485760 # 10MB in bytes