mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
22 lines
449 B
JavaScript
22 lines
449 B
JavaScript
const config = require('./config');
|
|
|
|
const configEnv = {
|
|
client: config.system.db_client,
|
|
connection: {
|
|
host: config.system.db_host,
|
|
user: config.system.db_user,
|
|
password: config.system.db_password,
|
|
database: config.system.db_name,
|
|
charset: 'utf8',
|
|
},
|
|
migrations: {
|
|
directory: config.system.migrations_dir,
|
|
},
|
|
pool: { min: 0, max: 7 },
|
|
};
|
|
|
|
module.exports = {
|
|
development: configEnv,
|
|
production: configEnv,
|
|
};
|