27 lines
379 B
Bash
27 lines
379 B
Bash
|
|
# VIMS Backend Configuration
|
||
|
|
NODE_ENV=production
|
||
|
|
PORT=3450
|
||
|
|
LOG_LEVEL=info
|
||
|
|
|
||
|
|
# Database
|
||
|
|
DB_HOST=vims-postgres
|
||
|
|
DB_PORT=5432
|
||
|
|
DB_NAME=vims
|
||
|
|
DB_USER=postgres
|
||
|
|
DB_PASSWORD=postgres
|
||
|
|
|
||
|
|
# Redis
|
||
|
|
REDIS_HOST=vims-redis
|
||
|
|
REDIS_PORT=6379
|
||
|
|
REDIS_PASSWORD=
|
||
|
|
|
||
|
|
# JWT
|
||
|
|
JWT_SECRET=change-this-in-production
|
||
|
|
|
||
|
|
# AWS S3 / MinIO
|
||
|
|
AWS_REGION=eu-north-1
|
||
|
|
S3_BUCKET=vims-images
|
||
|
|
|
||
|
|
# AI Models
|
||
|
|
MODEL_PATH=./data/models
|