-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
28 lines (23 loc) · 744 Bytes
/
env.example
File metadata and controls
28 lines (23 loc) · 744 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
25
26
27
28
# Flask Configuration
FLASK_APP=run.py
FLASK_ENV=development
FLASK_DEBUG=True
SECRET_KEY=your-secret-key-change-in-production
# OpenAI Configuration
OPENAI_API_KEY=your-openai-api-key-here
OPENAI_ORGANIZATION=your-organization-id-optional
OPENAI_MODEL=gpt-3.5-turbo
# Database Configuration (Optional)
DATABASE_URL=sqlite:///devplan.db
# Export Configuration
EXPORT_FOLDER=exports
MAX_EXPORT_SIZE=10MB
# Application Settings
APP_NAME=DevPlan AI Generator
APP_VERSION=1.0.0
ADMIN_EMAIL=admin@devplan.com
# Production Settings (when FLASK_ENV=production)
# Uncomment and configure for production
# DATABASE_URL=postgresql://user:password@localhost/devplan_prod
# SECRET_KEY=super-secret-production-key
# OPENAI_API_KEY=production-openai-key