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.
This commit is contained in:
Akhilesh Agarwal 2020-12-26 21:50:57 +01:00 committed by GitHub
parent 3e06ed6791
commit 3420e0bce0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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