30 lines
602 B
Plaintext
30 lines
602 B
Plaintext
# Database
|
|
DATABASE_URL="postgresql://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:5432/${DB_NAME}?schema=public"
|
|
|
|
# JWT
|
|
JWT_SECRET="${JWT_SECRET}"
|
|
JWT_ACCESS_EXPIRES_IN="2h"
|
|
JWT_REFRESH_EXPIRES_IN="30d"
|
|
|
|
# Redis
|
|
REDIS_HOST="${REDIS_HOST}"
|
|
REDIS_PORT=6379
|
|
REDIS_PASSWORD="${REDIS_PASSWORD}"
|
|
REDIS_DB=0
|
|
|
|
# Kafka
|
|
KAFKA_BROKERS="${KAFKA_BROKERS}"
|
|
KAFKA_CLIENT_ID="identity-service"
|
|
KAFKA_GROUP_ID="identity-service-group"
|
|
|
|
# SMS Service
|
|
SMS_API_URL="${SMS_API_URL}"
|
|
SMS_API_KEY="${SMS_API_KEY}"
|
|
|
|
# App
|
|
APP_PORT=3000
|
|
APP_ENV="production"
|
|
|
|
# Blockchain Encryption
|
|
WALLET_ENCRYPTION_SALT="${WALLET_ENCRYPTION_SALT}"
|