mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
import {
|
|
ExpressRequest,
|
|
ExpressResponse,
|
|
ExpressStatic,
|
|
} from 'Common-server/Utils/Express';
|
|
import path from 'path';
|
|
import app from 'Common-server/utils/StartServer';
|
|
|
|
app.get(
|
|
['/env.js', '/admin/env.js'],
|
|
(req: ExpressRequest, res: ExpressResponse) => {
|
|
const env = {
|
|
REACT_APP_IS_SAAS_SERVICE: process.env['IS_SAAS_SERVICE'],
|
|
REACT_APP_LICENSE_URL: process.env.LICENSE_URL,
|
|
REACT_APP_IS_THIRD_PARTY_BILLING:
|
|
process.env.IS_THIRD_PARTY_BILLING,
|
|
REACT_APP_VERSION:
|
|
process.env['npm_package_version'] ||
|
|
process.env['REACT_APP_VERSION'],
|
|
};
|
|
|
|
res.contentType('application/javascript');
|
|
res.send('window._env = ' + JSON.stringify(env));
|
|
}
|
|
);
|
|
|
|
app.get(
|
|
['/admin/status', '/status'],
|
|
(req: ExpressRequest, res: ExpressResponse) => {
|
|
res.setHeader('Content-Type', 'application/json');
|
|
res.send(
|
|
JSON.stringify({
|
|
status: 200,
|
|
message: 'Service Status - OK',
|
|
serviceType: 'oneuptime-admin-dashboard',
|
|
})
|
|
);
|
|
}
|
|
);
|
|
|
|
app.use(ExpressStatic(path.join(__dirname, 'build')));
|
|
app.use('/admin', ExpressStatic(path.join(__dirname, 'build')));
|
|
app.use(
|
|
'/admin/static/js',
|
|
ExpressStatic(path.join(__dirname, 'build/static/js'))
|
|
);
|
|
|
|
app.get('/*', (req: ExpressRequest, res: ExpressResponse) => {
|
|
res.sendFile(path.join(__dirname, 'build', 'index.html'));
|
|
});
|
|
|
|
app.listen(3100);
|