oneuptime/File/Index.ts
Simon Larsen d2c7ab49f4
fix lint.
2022-12-20 13:04:23 +05:30

44 lines
1.2 KiB
TypeScript

import 'ejs';
import { PostgresAppInstance } from 'CommonServer/Infrastructure/PostgresDatabase';
import Express, { ExpressApplication } from 'CommonServer/Utils/Express';
import logger from 'CommonServer/Utils/Logger';
import Redis from 'CommonServer/Infrastructure/Redis';
import App from 'CommonServer/Utils/StartServer';
import File from 'Model/Models/File';
import FileService, {
Service as FileServiceType,
} from 'CommonServer/Services/FileService';
import BaseAPI from 'CommonServer/API/BaseAPI';
import FileAPI from './API/File';
const app: ExpressApplication = Express.getExpressApp();
const APP_NAME: string = 'File';
app.use(
`/${APP_NAME.toLocaleLowerCase()}`,
new BaseAPI<File, FileServiceType>(File, FileService).getRouter()
);
// File Serve API.
app.use(`/${APP_NAME.toLocaleLowerCase()}`, new FileAPI().router);
const init: Function = async (): Promise<void> => {
try {
// init the app
await App(APP_NAME);
// connect to the database.
await PostgresAppInstance.connect(
PostgresAppInstance.getDatasourceOptions()
);
// connect redis
await Redis.connect();
} catch (err) {
logger.error('App Init Failed:');
logger.error(err);
}
};
init();