mirror of
https://github.com/wukko/cobalt.git
synced 2025-02-03 08:56:20 +01:00
api: alias deprecated envs to maintain backwards compatibility
This commit is contained in:
parent
0f515498dc
commit
12833e1827
2 changed files with 23 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
import "dotenv/config";
|
||||
import "./modules/sub/alias-envs.js";
|
||||
|
||||
import express from "express";
|
||||
|
||||
|
|
22
src/modules/sub/alias-envs.js
Normal file
22
src/modules/sub/alias-envs.js
Normal file
|
@ -0,0 +1,22 @@
|
|||
import { Red } from "./consoleText.js";
|
||||
|
||||
const mapping = {
|
||||
apiPort: 'API_PORT',
|
||||
apiURL: 'API_URL',
|
||||
apiName: 'API_NAME',
|
||||
cors: 'CORS_WILDCARD',
|
||||
cookiePath: 'COOKIE_PATH',
|
||||
webPort: 'WEB_PORT',
|
||||
webUrl: 'WEB_URL',
|
||||
showSponsors: 'SHOW_SPONSORS',
|
||||
isBeta: 'IS_BETA'
|
||||
}
|
||||
|
||||
for (const [ oldEnv, newEnv ] of Object.entries(mapping)) {
|
||||
if (process.env[oldEnv] && !process.env[newEnv]) {
|
||||
process.env[newEnv] = process.env[oldEnv];
|
||||
console.error(`${Red('[!]')} ${oldEnv} is deprecated and will be removed in a future version.`);
|
||||
console.error(` You should use ${newEnv} instead.`);
|
||||
console.error();
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue