9 lines
184 B
JavaScript
9 lines
184 B
JavaScript
const config = {};
|
|
|
|
config.db = {};
|
|
// config.webhost = 'http://nurl.co/';
|
|
config.webhost = 'http://localhost:7000/';
|
|
config.port = process.env.PORT || 6566;
|
|
|
|
module.exports = config;
|