-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.env.example
More file actions
47 lines (37 loc) · 988 Bytes
/
.env.example
File metadata and controls
47 lines (37 loc) · 988 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
36
37
38
39
40
41
42
43
44
45
46
47
# Server Configuration
PORT=3000
NODE_ENV=development
# MongoDB Configuration
MONGODB_URI=mongodb://localhost:27017/gtwy-ai
MONGODB_DB_NAME=gtwy-ai
# PostgreSQL Configuration
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_DB=gtwy_ai
POSTGRES_USER=your_username
POSTGRES_PASSWORD=your_password
# TimescaleDB Configuration (uses same Postgres connection)
TIMESCALE_HOST=localhost
TIMESCALE_PORT=5432
TIMESCALE_DB=gtwy_ai_metrics
TIMESCALE_USER=your_username
TIMESCALE_PASSWORD=your_password
# Redis Configuration
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=
REDIS_DB=0
# RabbitMQ Configuration (Optional)
RABBITMQ_URL=amqp://localhost:5672
# JWT Configuration
JWT_SECRET=your_jwt_secret_key_here
JWT_EXPIRES_IN=7d
# CORS Configuration
CORS_ORIGIN=http://localhost:3001
# Logging
LOG_LEVEL=info
# External Services
HIPPOCAMPUS_API_URL=https://api.hippocampus.ai
HIPPOCAMPUS_API_KEY=your_hippocampus_key
# Optional: APM Configuration
ATATUS_LICENSE_KEY=your_atatus_key