2017-08-05 20:14:17 +00:00
|
|
|
const config = {};
|
2016-02-07 21:16:07 +00:00
|
|
|
|
|
|
|
config.db = {};
|
2017-08-07 21:15:19 +00:00
|
|
|
// config.webhost = 'http://nurl.co/';
|
|
|
|
config.webhost = 'http://localhost:7000/';
|
2017-08-05 20:23:02 +00:00
|
|
|
config.port = 7000;
|
2016-02-07 21:16:07 +00:00
|
|
|
|
|
|
|
config.db.host = 'localhost';
|
|
|
|
config.db.name = 'url_shortener';
|
|
|
|
|
|
|
|
module.exports = config;
|