mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
* consolidate db configs * allow using custom file-name for the sqlite db * remove the unused `logging` config. it's overwritten in Db.ts
14 lines
293 B
TypeScript
14 lines
293 B
TypeScript
import {
|
|
getMariaDBConnectionOptions,
|
|
getMysqlConnectionOptions,
|
|
getPostgresConnectionOptions,
|
|
getSqliteConnectionOptions,
|
|
} from './config';
|
|
|
|
export default [
|
|
getSqliteConnectionOptions(),
|
|
getPostgresConnectionOptions(),
|
|
getMysqlConnectionOptions(),
|
|
getMariaDBConnectionOptions(),
|
|
];
|