2024-06-14 11:09:53 +00:00
|
|
|
import MainAPI from "./API/Main";
|
|
|
|
import SettingsAPI from "./API/Settings";
|
|
|
|
import { PromiseVoidFunction } from "Common/Types/FunctionTypes";
|
|
|
|
import Express, { ExpressApplication } from "CommonServer/Utils/Express";
|
|
|
|
import logger from "CommonServer/Utils/Logger";
|
|
|
|
import App from "CommonServer/Utils/StartServer";
|
|
|
|
import "ejs";
|
2023-05-09 16:03:03 +00:00
|
|
|
|
|
|
|
const app: ExpressApplication = Express.getExpressApp();
|
|
|
|
|
2024-06-14 11:09:53 +00:00
|
|
|
const APP_NAME: string = "test-server";
|
2023-05-09 16:03:03 +00:00
|
|
|
|
2024-06-14 11:09:53 +00:00
|
|
|
app.use([`/${APP_NAME}`, "/"], MainAPI);
|
|
|
|
app.use([`/${APP_NAME}`, "/"], SettingsAPI);
|
2023-05-09 16:03:03 +00:00
|
|
|
|
2024-02-27 15:37:49 +00:00
|
|
|
const init: PromiseVoidFunction = async (): Promise<void> => {
|
2024-06-14 11:09:53 +00:00
|
|
|
try {
|
|
|
|
// init the app
|
|
|
|
await App.init({
|
|
|
|
appName: APP_NAME,
|
|
|
|
port: undefined,
|
|
|
|
isFrontendApp: false,
|
|
|
|
statusOptions: {
|
|
|
|
liveCheck: async () => {},
|
|
|
|
readyCheck: async () => {},
|
|
|
|
},
|
|
|
|
});
|
2024-04-24 16:44:29 +00:00
|
|
|
|
2024-06-14 11:09:53 +00:00
|
|
|
// add default routes
|
|
|
|
await App.addDefaultRoutes();
|
|
|
|
} catch (err) {
|
|
|
|
logger.error("App Init Failed:");
|
|
|
|
logger.error(err);
|
|
|
|
throw err;
|
|
|
|
}
|
2023-05-09 16:03:03 +00:00
|
|
|
};
|
|
|
|
|
2023-08-10 18:00:27 +00:00
|
|
|
init().catch((err: Error) => {
|
2024-06-14 11:09:53 +00:00
|
|
|
logger.error(err);
|
|
|
|
logger.error("Exiting node process");
|
|
|
|
process.exit(1);
|
2023-08-10 18:00:27 +00:00
|
|
|
});
|