nurl/config.js
Martin Donnelly 7e8dad9b38 Re work
2017-08-05 21:23:02 +01:00

11 lines
183 B
JavaScript

const config = {};
config.db = {};
config.webhost = 'http://nurl.co/';
config.port = 7000;
config.db.host = 'localhost';
config.db.name = 'url_shortener';
module.exports = config;