radar host overrides

This commit is contained in:
Matt Walsh
2025-05-23 22:14:48 -05:00
parent 0be23ee988
commit 1609ab3d38
6 changed files with 25 additions and 5 deletions

View File

@@ -5,6 +5,7 @@ import corsPassThru from './cors/index.mjs';
import radarPassThru from './cors/radar.mjs';
import outlookPassThru from './cors/outlook.mjs';
import playlist from './src/playlist.mjs';
import OVERRIDES from './src/overrides.mjs';
const app = express();
const port = process.env.WS4KP_PORT ?? 8080;
@@ -57,6 +58,7 @@ const index = (req, res) => {
res.render('index', {
production: false,
version,
OVERRIDES,
});
};