stone/config.js
Martin Donnelly 36555af489 init
2017-09-11 11:13:57 +01:00

12 lines
229 B
JavaScript

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