-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
48 lines (39 loc) · 1.39 KB
/
.env.example
File metadata and controls
48 lines (39 loc) · 1.39 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Flask Configuration
FLASK_ENV=development
SECRET_KEY=your-secret-key-here
# Gunicorn Configuration
GUNICORN_TIMEOUT=300 # Timeout in seconds (default: 300s for large CSV imports)
GUNICORN_WORKERS=4 # Number of worker processes (default: 4)
# Database Configuration
DB_USER=your_db_user
DB_PASSWORD=your_db_password
DB_NAME=your_db_name
DB_HOST=localhost
DB_PORT=5432
POSTGRES_URI=postgresql://user:password@localhost:5432/dbname
DATABASE_URL=postgresql://user:password@localhost:5432/dbname
# OpenPhone API Configuration
OPENPHONE_API_KEY=your-openphone-api-key
OPENPHONE_PHONE_NUMBER=+1234567890
OPENPHONE_PHONE_NUMBER_ID=PNxxxxxxxx
OPENPHONE_WEBHOOK_SIGNING_KEY=your-webhook-signing-key
# Google OAuth Configuration
GOOGLE_CLIENT_ID=your-google-client-id
GOOGLE_CLIENT_SECRET=your-google-client-secret
GOOGLE_PROJECT_ID=your-google-project-id
# Gemini API Configuration
GEMINI_API_KEY=your-gemini-api-key
# Redis Configuration
REDIS_URL=redis://localhost:6379/0
# Mail Configuration (Optional)
MAIL_SERVER=smtp.gmail.com
MAIL_PORT=587
MAIL_USE_TLS=true
MAIL_USERNAME=your-email@gmail.com
MAIL_PASSWORD=your-app-password
MAIL_DEFAULT_SENDER=noreply@yourdomain.com
# Environment-specific Database URLs (Optional)
DEV_DATABASE_URL=postgresql://dev_user:dev_password@localhost:5432/dev_db
TEST_DATABASE_URL=sqlite:///:memory:
# Error Tracking (Optional)
SENTRY_DSN=https://your-sentry-dsn@sentry.io/project-id