debian-image-builder-frontend/profiles/local-frontend.js
2020-09-14 12:16:35 +02:00

13 lines
497 B
JavaScript

/*global module*/
const SECTION = 'apps';
const APP_ID = 'image-builder';
const FRONTEND_PORT = 8002;
const routes = {};
routes[`/beta/${SECTION}/${APP_ID}`] = { host: `http://localhost:${FRONTEND_PORT}` };
routes[`/${SECTION}/${APP_ID}`] = { host: `http://localhost:${FRONTEND_PORT}` };
routes[`/beta/apps/${APP_ID}`] = { host: `http://localhost:${FRONTEND_PORT}` };
routes[`/apps/${APP_ID}`] = { host: `http://localhost:${FRONTEND_PORT}` };
module.exports = { routes };