-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
49 lines (41 loc) · 1.16 KB
/
.env.example
File metadata and controls
49 lines (41 loc) · 1.16 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
# Database
DATABASE_URL=postgresql://bongo_user:bongo_pass@localhost:5432/bongo_ai
MONGODB_URL=mongodb://bongo_user:bongo_pass@localhost:27017/bongo_ai
REDIS_URL=redis://localhost:6379
# AI Services
OPENAI_API_KEY=your_openai_api_key_here
COHERE_API_KEY=your_cohere_api_key_here
PINECONE_API_KEY=your_pinecone_api_key_here
PINECONE_ENVIRONMENT=your_pinecone_environment_here
WEAVIATE_URL=http://localhost:8080
WEAVIATE_API_KEY=your_weaviate_api_key_here
# Auth
JWT_SECRET=your_jwt_secret_here
JWT_EXPIRES_IN=7d
REFRESH_TOKEN_SECRET=your_refresh_token_secret_here
REFRESH_TOKEN_EXPIRES_IN=30d
# Storage
S3_BUCKET=bongo-ai-storage
S3_REGION=ap-south-1
S3_ACCESS_KEY=your_s3_access_key_here
S3_SECRET_KEY=your_s3_secret_key_here
GCS_BUCKET=bongo-ai-storage
GCS_PROJECT_ID=your_gcs_project_id_here
# Application
NODE_ENV=development
PORT=4000
API_URL=http://localhost:4000
WEB_URL=http://localhost:3000
# Rate Limiting
RATE_LIMIT_WINDOW_MS=900000
RATE_LIMIT_MAX_REQUESTS=100
# Data Residency
DATA_REGION=bd
COMPLIANCE_MODE=bangladesh
# Monitoring
SENTRY_DSN=your_sentry_dsn_here
LOGGING_LEVEL=info
# Feature Flags
ENABLE_OFFLINE_MODE=true
ENABLE_AI_FEATURES=true
ENABLE_ANALYTICS=true