2021-05-29 11:31:21 -07:00
|
|
|
import * as path from 'path';
|
|
|
|
import { UserSettings } from 'n8n-core';
|
|
|
|
import { entities } from '../src/databases/entities';
|
2020-04-22 06:52:15 -07:00
|
|
|
|
|
|
|
module.exports = [
|
2021-08-29 11:58:11 -07:00
|
|
|
{
|
|
|
|
name: 'sqlite',
|
|
|
|
type: 'sqlite',
|
|
|
|
logging: true,
|
|
|
|
entities: Object.values(entities),
|
|
|
|
database: path.join(UserSettings.getUserN8nFolderPath(), 'database.sqlite'),
|
2021-10-13 15:21:00 -07:00
|
|
|
migrations: ['./src/databases/sqlite/migrations/index.ts'],
|
2021-08-29 11:58:11 -07:00
|
|
|
subscribers: ['./src/databases/sqlite/subscribers/*.ts'],
|
|
|
|
cli: {
|
|
|
|
entitiesDir: './src/databases/entities',
|
|
|
|
migrationsDir: './src/databases/sqlite/migrations',
|
|
|
|
subscribersDir: './src/databases/sqlite/subscribers',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'postgres',
|
|
|
|
type: 'postgres',
|
|
|
|
logging: false,
|
|
|
|
host: 'localhost',
|
|
|
|
username: 'postgres',
|
|
|
|
password: '',
|
|
|
|
port: 5432,
|
|
|
|
database: 'n8n',
|
|
|
|
schema: 'public',
|
|
|
|
entities: Object.values(entities),
|
2021-10-13 15:21:00 -07:00
|
|
|
migrations: ['./src/databases/postgresdb/migrations/index.ts'],
|
2021-08-29 11:58:11 -07:00
|
|
|
subscribers: ['src/subscriber/**/*.ts'],
|
|
|
|
cli: {
|
|
|
|
entitiesDir: './src/databases/entities',
|
|
|
|
migrationsDir: './src/databases/postgresdb/migrations',
|
|
|
|
subscribersDir: './src/databases/postgresdb/subscribers',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'mysql',
|
|
|
|
type: 'mysql',
|
|
|
|
database: 'n8n',
|
|
|
|
username: 'root',
|
|
|
|
password: 'password',
|
|
|
|
host: 'localhost',
|
|
|
|
port: '3306',
|
|
|
|
logging: false,
|
|
|
|
entities: Object.values(entities),
|
2021-10-13 15:21:00 -07:00
|
|
|
migrations: ['./src/databases/mysqldb/migrations/index.ts'],
|
2021-08-29 11:58:11 -07:00
|
|
|
subscribers: ['src/subscriber/**/*.ts'],
|
|
|
|
cli: {
|
|
|
|
entitiesDir: './src/databases/entities',
|
|
|
|
migrationsDir: './src/databases/mysqldb/migrations',
|
|
|
|
subscribersDir: './src/databases/mysqldb/Subscribers',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'mariadb',
|
|
|
|
type: 'mariadb',
|
|
|
|
database: 'n8n',
|
|
|
|
username: 'root',
|
|
|
|
password: 'password',
|
|
|
|
host: 'localhost',
|
|
|
|
port: '3306',
|
|
|
|
logging: false,
|
|
|
|
entities: Object.values(entities),
|
|
|
|
migrations: ['./src/databases/mysqldb/migrations/*.ts'],
|
|
|
|
subscribers: ['src/subscriber/**/*.ts'],
|
|
|
|
cli: {
|
|
|
|
entitiesDir: './src/databases/entities',
|
|
|
|
migrationsDir: './src/databases/mysqldb/migrations',
|
|
|
|
subscribersDir: './src/databases/mysqldb/Subscribers',
|
|
|
|
},
|
|
|
|
},
|
2020-07-17 08:08:40 -07:00
|
|
|
];
|