23 lines
563 B
Plaintext
23 lines
563 B
Plaintext
# =============================================================================
|
|
# Admin Service - Environment Variables Example
|
|
# =============================================================================
|
|
|
|
# Application
|
|
NODE_ENV=production
|
|
APP_PORT=3010
|
|
API_PREFIX=api/v1
|
|
BASE_URL=https://rwaapi.szaiai.com
|
|
|
|
# Database
|
|
DATABASE_URL=postgresql://rwa_user:rwa_secure_password@postgres:5432/rwa_admin?schema=public
|
|
|
|
# JWT
|
|
JWT_SECRET=your-jwt-secret-here
|
|
JWT_EXPIRES_IN=7d
|
|
|
|
# Redis
|
|
REDIS_HOST=redis
|
|
REDIS_PORT=6379
|
|
REDIS_PASSWORD=
|
|
REDIS_DB=9
|