Add new API endpoint (accounts/verify_credentials)

This commit is contained in:
Jesse Wierzbinski 2023-09-21 16:15:12 -10:00
parent e25b745e25
commit ce2ed0754e
11 changed files with 234 additions and 181 deletions

View file

@ -10,8 +10,9 @@ export interface ConfigType {
};
http: {
port: number;
base_url: string;
bind: string;
bind_port: string;
};
validation: {
@ -68,8 +69,9 @@ export interface ConfigType {
export const configDefaults: ConfigType = {
http: {
port: 3000,
base_url: "http://0.0.0.0",
bind: "http://0.0.0.0",
bind_port: "8000",
base_url: "http://fediproject.localhost:8000",
},
database: {
host: "localhost",