12 lines
228 B
JavaScript
12 lines
228 B
JavaScript
const config = {};
|
|
|
|
config.db = {};
|
|
//config.webhost = 'http://nurl.co/';
|
|
config.webhost = 'http://localhost:7000/';
|
|
config.port = 7000;
|
|
|
|
config.db.host = 'localhost';
|
|
config.db.name = 'url_shortener';
|
|
|
|
module.exports = config;
|