mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 12:50:01 +00:00
api: defer file loads until api is running
This commit is contained in:
parent
b434b0b45e
commit
7dc0121031
1 changed files with 9 additions and 9 deletions
|
@ -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);
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue