10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
const config = {};
|
|
|
|
config.db = {};
|
|
config.webhost = 'http://localhost:3000/';
|
|
|
|
config.db.host = 'localhost';
|
|
config.db.name = 'url_shortener';
|
|
|
|
module.exports = config;
|