stone/config.js

12 lines
229 B
JavaScript
Raw Normal View History

2017-09-11 10:13:57 +00:00
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;