From ca3bbf4d7d6c52dd8d10608e30cfd516480dcf53 Mon Sep 17 00:00:00 2001 From: Pablo Fernandez
Date: Wed, 31 Jan 2024 13:44:59 +0000
Subject: [PATCH] remove wrong defaults on config
---
src/config/index.ts | 4 ----
1 file changed, 4 deletions(-)
diff --git a/src/config/index.ts b/src/config/index.ts
index 4c37c02..db819f6 100644
--- a/src/config/index.ts
+++ b/src/config/index.ts
@@ -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