remove wrong defaults on config

This commit is contained in:
Pablo Fernandez
2024-01-31 13:44:59 +00:00
parent 529f68360d
commit ca3bbf4d7d

View File

@@ -49,8 +49,6 @@ const defaultConfig: IConfig = {
"wss://relay.nsecbunker.com"
]
},
authPort: 3000,
authHost: 'localhost',
admin: {
npubs: [],
adminRelays: [
@@ -59,12 +57,10 @@ const defaultConfig: IConfig = {
key: generatedKey.privateKey!,
notifyAdminsOnBoot: true,
},
baseUrl: "https://nostr.me",
database: 'sqlite://nsecbunker.db',
logs: './nsecbunker.log',
keys: {},
verbose: false,
domains: {}
};
async function getCurrentConfig(config: string): Promise<IConfig> {