mirror of
https://github.com/versia-pub/server.git
synced 2026-03-13 05:49:16 +01:00
Work on federation
This commit is contained in:
parent
b27d4219f9
commit
8b442c241c
8 changed files with 254 additions and 2 deletions
|
|
@ -9,6 +9,15 @@ export interface ConfigType {
|
|||
database: string;
|
||||
};
|
||||
|
||||
redis: {
|
||||
queue: {
|
||||
host: string;
|
||||
port: number;
|
||||
password: string;
|
||||
database: number;
|
||||
};
|
||||
};
|
||||
|
||||
http: {
|
||||
base_url: string;
|
||||
bind: string;
|
||||
|
|
@ -145,6 +154,14 @@ export const configDefaults: ConfigType = {
|
|||
password: "postgres",
|
||||
database: "lysand",
|
||||
},
|
||||
redis: {
|
||||
queue: {
|
||||
host: "localhost",
|
||||
port: 6379,
|
||||
password: "",
|
||||
database: 0,
|
||||
},
|
||||
},
|
||||
instance: {
|
||||
banner: "",
|
||||
description: "",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue