Skip to content

Commit

Permalink
Fix Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bencevans committed Apr 9, 2015
1 parent 2b8c9ef commit 453e682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.example.js
Expand Up @@ -62,7 +62,7 @@ if(process.env.MONGO_HOST) {
var host = process.env.MONGO_HOST;
var port = process.env.MONGO_PORT || 27017;
var db = process.env.MONGO_DB || 'jobukyu';
module.exports.mongo.url = 'mongodb://' + host + ':' + port '/' + db;
module.exports.mongo.url = 'mongodb://' + host + ':' + port + '/' + db;
}

if(process.env.PORT) {
Expand Down

0 comments on commit 453e682

Please sign in to comment.