open-nomad/ui/server/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
536 B
JavaScript
Raw Normal View History

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
'use strict';
2021-12-28 14:45:20 +00:00
module.exports = function (app, options) {
const globSync = require('glob').sync;
const mocks = globSync('./mocks/**/*.js', { cwd: __dirname }).map(require);
2021-12-28 16:08:12 +00:00
const proxies = globSync('./proxies/**/*.js', { cwd: __dirname }).map(
require
);
// Log proxy requests
const morgan = require('morgan');
app.use(morgan('dev'));
2021-12-28 14:45:20 +00:00
mocks.forEach((route) => route(app, options));
proxies.forEach((route) => route(app, options));
};