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.
|
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); |