You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
582 B
22 lines
582 B
# App config
|
|
NODE_ENV=development
|
|
PORT=3004
|
|
|
|
# Db config
|
|
POSTGRES_URI=postgres://admin:admin@127.0.0.1:5432/game
|
|
POSTGRES_URI_TEST=postgres://admin:admin@127.0.0.1:5432/game-test
|
|
|
|
MONGO_URI=mongodb://127.0.0.1:27017/game-event?authSource=admin
|
|
MONGO_URI_TEST=mongodb://127.0.0.1:27017/game-event?authSource=admin
|
|
|
|
RABBITMQ_URI=amqp://127.0.0.1:5672
|
|
REDIS_URI=redis://127.0.0.1:6379
|
|
|
|
# Cdn config
|
|
CDN_URI=http://103.162.31.170
|
|
DEV_CDN_URI=http://103.162.31.170
|
|
STORAGE_URI=/home/storages
|
|
DEV_STORAGE_URI=/home/storages
|
|
|
|
# Other service
|
|
MANAGER_SERVICE_URL=http://sv-backend-manager |