-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.production.example
More file actions
50 lines (40 loc) · 1.33 KB
/
Copy path.env.production.example
File metadata and controls
50 lines (40 loc) · 1.33 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
49
50
# Production Environment Configuration for Email Client CLI
# API Server Settings
API_HOST=0.0.0.0
API_PORT=8000
API_PREFIX=/api/v1
# Frontend URL (for CORS)
FRONTEND_URL=https://your-domain.com
# Additional CORS origins (comma-separated)
CORS_ORIGINS=https://your-domain.com,https://www.your-domain.com
# Security
SECRET_KEY=your-generated-secret-key-here-use-openssl-rand-hex-32
JWT_ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30
# Database
DATABASE_PATH=/opt/email-client-cli/order_tracking.db
# Admin Setup (change these!)
ADMIN_EMAIL=admin@your-domain.com
ADMIN_PASSWORD=change-this-strong-password
# Email Reading (IMAP) - Copy from your .env
IMAP_SERVER=imap.gmail.com
IMAP_PORT=993
EMAIL_ADDRESS=monitor@gmail.com
EMAIL_PASSWORD=xxxx xxxx xxxx xxxx
# AI Processing - Copy from your .env
ANTHROPIC_API_KEY=sk-ant-api03-xxx
# Email Sending (SMTP) - Copy from your .env
SMTP_SERVER=smtp.gmail.com
SMTP_PORT=587
SMTP_USERNAME=sender@gmail.com
SMTP_PASSWORD=xxxx xxxx xxxx xxxx
# Processing - Copy from your .env
CS_EMAIL=cs@company.com
LATICRETE_CS_EMAIL=lat-cs@company.com
CHECK_INTERVAL_MINUTES=5
LOG_LEVEL=INFO
LOG_FILE=/opt/email-client-cli/logs/email_processor.log
ORDER_TRACKING_DB=/opt/email-client-cli/order_tracking.db
# Integration paths
PROJECT_ROOT=/opt/email-client-cli
EMAIL_PROCESSOR_CONFIG=/opt/email-client-cli/.env.production