Skip to content
Snippets Groups Projects
Commit 6de08d07 authored by Satsuki Yanagi's avatar Satsuki Yanagi Committed by syuilo
Browse files

Support PostgreSQL Extra Connection options (#4970)

parent f54cd10a
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,10 @@ db:
user: example-misskey-user
pass: example-misskey-pass
# Extra Connection options
#extra:
# ssl: true
# ┌─────────────────────┐
#───┘ Redis configuration └─────────────────────────────────────
......
......@@ -14,6 +14,7 @@ export type Source = {
db: string;
user: string;
pass: string;
extra?: { [x: string]: string };
};
redis: {
host: string;
......
......@@ -93,6 +93,7 @@ export function initDb(justBorrow = false, sync = false, log = false) {
username: config.db.user,
password: config.db.pass,
database: config.db.db,
extra: config.db.extra,
synchronize: process.env.NODE_ENV === 'test' || sync,
dropSchema: process.env.NODE_ENV === 'test' && !justBorrow,
logging: log,
......
......@@ -8,6 +8,7 @@ const json = {
username: config.db.user,
password: config.db.pass,
database: config.db.db,
extra: config.db.extra,
entities: ['src/models/entities/*.ts'],
migrations: ['migration/*.ts'],
cli: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment