api: defer file loads until api is running

This commit is contained in:
jj 2024-10-27 18:12:59 +00:00
parent b434b0b45e
commit 7dc0121031
No known key found for this signature in database

View file

@ -345,14 +345,6 @@ export const runAPI = (express, app, __dirname) => {
setGlobalDispatcher(new ProxyAgent(env.externalProxy)) setGlobalDispatcher(new ProxyAgent(env.externalProxy))
} }
if (env.apiKeyURL) {
APIKeys.setup(env.apiKeyURL);
}
if (env.cookiePath) {
Cookies.setup(env.cookiePath);
}
app.listen(env.apiPort, env.listenAddress, () => { app.listen(env.apiPort, env.listenAddress, () => {
console.log(`\n` + console.log(`\n` +
Bright(Cyan("cobalt ")) + Bright("API ^ω⁠^") + "\n" + Bright(Cyan("cobalt ")) + Bright("API ^ω⁠^") + "\n" +
@ -367,6 +359,14 @@ export const runAPI = (express, app, __dirname) => {
Bright("url: ") + Bright(Cyan(env.apiURL)) + "\n" + Bright("url: ") + Bright(Cyan(env.apiURL)) + "\n" +
Bright("port: ") + env.apiPort + "\n" Bright("port: ") + env.apiPort + "\n"
) );
if (env.apiKeyURL) {
APIKeys.setup(env.apiKeyURL);
}
if (env.cookiePath) {
Cookies.setup(env.cookiePath);
}
}) })
} }