From 3420e0bce01dfca1b858cd0a9ccc0e3d7bf7e1ca Mon Sep 17 00:00:00 2001 From: Akhilesh Agarwal Date: Sat, 26 Dec 2020 21:50:57 +0100 Subject: [PATCH] Update develop.md In docker-compose.dev.yml, DATABASE_CONNECTIONSTRING is used as a database URL whereas, in the code, CONNECTIONSTRING is being used. Hence, updating the string in docker-compose.dev.yml file. --- get-started/nodejs/develop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-started/nodejs/develop.md b/get-started/nodejs/develop.md index 3a9e4fd98d..118c878a1a 100644 --- a/get-started/nodejs/develop.md +++ b/get-started/nodejs/develop.md @@ -121,7 +121,7 @@ services: - 9229:9229 environment: - SERVER_PORT=8080 - - DATABASE_CONNECTIONSTRING=mongodb://mongo:27017/notes + - CONNECTIONSTRING=mongodb://mongo:27017/notes volumes: - ./:/code command: npm run debug