31 lines
854 B
Bash
31 lines
854 B
Bash
NODE_ENV=development
|
|
PORT=4501
|
|
|
|
# Nest build
|
|
BUILD_COMMAND=npm run build:development
|
|
|
|
# Database
|
|
POSTGRES_HOST=postgres
|
|
POSTGRES_DB=support_dev
|
|
POSTGRES_USER=support_user
|
|
POSTGRES_PASSWORD=z1F3tKF1JNDBQmMq95Up
|
|
# DATABASE_URL=postgresql://support_user:z1F3tKF1JNDBQmMq95Up@postgres:5432/support_dev
|
|
|
|
DATABASE_URL=postgresql://support_user:SupportDev123@localhost:5432/support_dev
|
|
|
|
# Redis
|
|
# REDIS_HOST=redis
|
|
# REDIS_PORT=6379
|
|
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
REDIS_PASSWORD=D7FJ7QDKo5gF9KQAO1GL
|
|
|
|
# Security & CORS
|
|
# JWT_SECRET=super-secret-development-jwt-key-32-chars-long
|
|
# CORS_ORIGINS=https://support-dev.maskantech.in
|
|
|
|
# Security & CORS
|
|
JWT_SECRET=super-secret-development-jwt-key-32-chars-long
|
|
INTEGRATION_CREDENTIAL_ENCRYPTION_KEY=c2e444fe8cc19eb7465e2f8a05f7384628de7a879fcc812766e093c9182fcd58
|
|
CORS_ORIGINS=https://support-dev.maskantech.in |