-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.production.example
More file actions
38 lines (31 loc) · 1.02 KB
/
.env.production.example
File metadata and controls
38 lines (31 loc) · 1.02 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
# Database Configuration
POSTGRES_USER=flower
POSTGRES_PASSWORD=your_secure_password_here
DATABASE_URL=postgresql://flower:your_secure_password_here@postgres:5432/flower?schema=public
# API Configuration
API_PORT=3001
API_DOMAIN=api.yourdomain.com
LOG_LEVEL=info
CORS_ORIGIN=https://yourdomain.com
# Authentication
JWT_SECRET=your_jwt_secret_here_minimum_32_chars
JWT_REFRESH_SECRET=your_refresh_secret_here_minimum_32_chars
# OpenRouter AI Integration
OPENROUTER_API_KEY=your_openrouter_api_key_here
# Web Application
WEB_PORT=3000
WEB_DOMAIN=yourdomain.com
NEXT_PUBLIC_API_URL=https://api.yourdomain.com
NEXT_PUBLIC_APP_URL=https://yourdomain.com
# Optional: Email Service (if implemented)
# SMTP_HOST=smtp.gmail.com
# SMTP_PORT=587
# SMTP_USER=your_email@gmail.com
# SMTP_PASS=your_app_password
# Optional: S3 Storage (if implemented)
# S3_BUCKET=flower-storage
# S3_REGION=us-east-1
# S3_ACCESS_KEY_ID=your_access_key
# S3_SECRET_ACCESS_KEY=your_secret_key
# Optional: Redis (for rate limiting/caching)
# REDIS_URL=redis://redis:6379