add services/mam-api/.env.example
This commit is contained in:
parent
43fe16831f
commit
3694e65ab0
1 changed files with 27 additions and 0 deletions
27
services/mam-api/.env.example
Normal file
27
services/mam-api/.env.example
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# Database
|
||||
DB_USER=postgres
|
||||
DB_PASSWORD=postgres
|
||||
DB_HOST=localhost
|
||||
DB_PORT=5432
|
||||
DB_NAME=wild_dragon
|
||||
|
||||
# Session
|
||||
SESSION_SECRET=your-secret-key-change-in-production
|
||||
|
||||
# S3 / Object Storage
|
||||
S3_ENDPOINT=http://minio:9000
|
||||
S3_ACCESS_KEY=minioadmin
|
||||
S3_SECRET_KEY=minioadmin
|
||||
S3_REGION=us-east-1
|
||||
S3_BUCKET=wild-dragon
|
||||
|
||||
# Redis (for BullMQ)
|
||||
REDIS_HOST=localhost
|
||||
REDIS_PORT=6379
|
||||
|
||||
# Capture Service
|
||||
CAPTURE_URL=http://capture:3001
|
||||
|
||||
# Server
|
||||
PORT=3000
|
||||
NODE_ENV=development
|
||||
Loading…
Reference in a new issue