-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env
More file actions
35 lines (28 loc) · 752 Bytes
/
.env
File metadata and controls
35 lines (28 loc) · 752 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
29
30
31
32
33
34
35
# Server Configuration
PORT=8000
HOST=0.0.0.0
NODE_ENV=development
# Database Configuration
DB_HOST=localhost
DB_PORT=5432
DB_NAME=your_database_name
DB_USER=your_database_user
DB_PASSWORD=your_database_password
# API Keys and Secrets
JWT_SECRET=your_jwt_secret_here
OPENAI_API_KEY=your_openai_api_key_here
# External Service URLs
API_URL=http://localhost:8000
FRONTEND_URL=http://localhost:3000
# Authentication
AUTH_SECRET=your_auth_secret_here
AUTH_EXPIRY=3600 # Seconds
# Logging and Monitoring
LOG_LEVEL=INFO
SENTRY_DSN=your_sentry_dsn_here
# Caching
REDIS_URL=redis://localhost:6379
# Cloud Services
AWS_ACCESS_KEY_ID=your_aws_access_key_id_here
AWS_SECRET_ACCESS_KEY=your_aws_secret_access_key_here
S3_BUCKET_NAME=your_s3_bucket_name_here