Work on federation

This commit is contained in:
Jesse Wierzbinski 2023-11-26 15:40:44 -10:00
parent b27d4219f9
commit 8b442c241c
No known key found for this signature in database
8 changed files with 254 additions and 2 deletions

View file

@ -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: "",