fix: docker-compose was getting an error because there is no .env file.

This commit is contained in:
Jonathan Math 2021-10-18 11:21:36 -05:00
parent 5f7047d5ad
commit ecdcacf6c3

View file

@ -20,7 +20,8 @@
// throw envresult.error
envresult = require('dotenv').config();
if (envresult.error) {
throw envresult.error;
log.debug(`There is no .env file. Continuing...`);
//throw envresult.error;
}
}