mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
13 lines
282 B
JavaScript
13 lines
282 B
JavaScript
import Knex from 'knex';
|
|
import { knexSnakeCaseMappers } from 'objection';
|
|
import knexfile from '@/../config/systemKnexfile';
|
|
|
|
const config = knexfile[process.env.NODE_ENV];
|
|
|
|
const knex = Knex({
|
|
...config,
|
|
...knexSnakeCaseMappers({ upperCase: true }),
|
|
});
|
|
|
|
export default knex;
|