This repository has been archived on 2023-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vn-softphone/config.js

7 lines
259 B
JavaScript
Raw Normal View History

2018-01-10 20:01:38 +00:00
var path = require('path');
let configPath = path.join(__dirname, 'config/datasources.json');
if (process.env.NODE_ENV != 'production')
configPath = path.join(__dirname, 'config/datasources.development.json');
module.exports = require(configPath);