Skip to content

Commit 0875951

Browse files
committed
fix: correct json string value
1 parent caf7d55 commit 0875951

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

microservices/user/ecosystem.config.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ module.exports = {
99
instances:4,
1010
env_production: {
1111
NODE_ENV: "prod",
12-
DATABASE_URL="mongodb://mongodb:27017/microservices-suite_user_proddb",
13-
EXCHANGE="@monorepo",
14-
AMQP_HOST="amqp://rabbitmq:5672",
12+
DATABASE_URL:"mongodb://mongodb:27017/microservices-suite_user_proddb",
13+
EXCHANGE:"@microservices-suite",
14+
AMQP_HOST:"amqp://rabbitmq:5672",
1515
PORT:9011
1616
},
1717
env_development: {
1818
NODE_ENV: "dev",
19-
DATABASE_URL="mongodb://mongodb:27017/microservices-suite_user_devdb",
20-
EXCHANGE="@monorepo",
21-
AMQP_HOST="amqp://rabbitmq:5672",
19+
DATABASE_URL:"mongodb://mongodb:27017/microservices-suite_user_devdb",
20+
EXCHANGE:"@microservices-suite",
21+
AMQP_HOST:"amqp://rabbitmq:5672",
2222
PORT:9011
2323
}
2424
}]

0 commit comments

Comments
 (0)