dbHost not recognized
evan9523 opened this issue · 7 comments
evan9523 commented
Hi whenever i type in npm start it says "dbHost not recognized."
littledivy commented
Hello @evan9523,
Thanks for opening the issue.
Could you please provide a screenshot or the full error displayed in the terminal?
thisistuhinsen commented
dan-online commented
Hi! @thisistuhinsen and @evan9523 in your package.json can you change
"scripts": {
"start": "dbHost=localhost node ./bin/www"
},
to
"scripts": {
"start": "export dbHost=localhost; node ./bin/www"
},
and try again
thisistuhinsen commented
dan-online commented
@thisistuhinsen and @evan9523 change it to
"scripts": {
"start": "node ./bin/www"
},
dan-online commented
This has been fixed in commit 7a4bce0
dan-online commented
Closing the issue as it has been resolved