debian-image-builder-frontend/profiles/local-frontend.js
sanne raymaekers f93d36b972 copy from RedHatInsights/insights-frontend-starter-app template
Copied removing unused parts, and includes some initial changes.
2020-04-15 12:46:02 +02:00

13 lines
501 B
JavaScript

/*global module*/
const SECTION = 'apps';
const APP_ID = 'osbuild-installer';
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 };