2021-01-05 16:12:38 -05:00
|
|
|
/*
|
2022-06-21 10:16:40 -04:00
|
|
|
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
2021-01-05 16:12:38 -05:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
2021-09-23 16:05:57 -04:00
|
|
|
import { LogLevel } from '@nestjs/common';
|
2020-10-30 17:35:57 -04:00
|
|
|
import { ConfigService } from '@nestjs/config';
|
2022-06-19 15:23:56 -04:00
|
|
|
import { NestFactory } from '@nestjs/core';
|
2020-10-24 05:32:23 -04:00
|
|
|
import { NestExpressApplication } from '@nestjs/platform-express';
|
2021-08-29 12:45:46 -04:00
|
|
|
|
2022-06-19 15:23:56 -04:00
|
|
|
import { setupApp } from './app-init';
|
2020-07-25 14:26:10 -04:00
|
|
|
import { AppModule } from './app.module';
|
2020-10-30 17:35:57 -04:00
|
|
|
import { AppConfig } from './config/app.config';
|
2021-08-31 07:36:13 -04:00
|
|
|
import { AuthConfig } from './config/auth.config';
|
2022-03-05 13:22:21 -05:00
|
|
|
import { DatabaseConfig } from './config/database.config';
|
2021-01-15 10:57:04 -05:00
|
|
|
import { MediaConfig } from './config/media.config';
|
2021-04-02 13:08:30 -04:00
|
|
|
import { ConsoleLoggerService } from './logger/console-logger.service';
|
2020-07-21 15:24:56 -04:00
|
|
|
|
2021-02-27 11:41:32 -05:00
|
|
|
async function bootstrap(): Promise<void> {
|
2022-06-19 15:23:56 -04:00
|
|
|
// Initialize AppModule
|
2021-04-02 13:08:30 -04:00
|
|
|
const app = await NestFactory.create<NestExpressApplication>(AppModule, {
|
|
|
|
logger: ['error', 'warn', 'log'] as LogLevel[],
|
2021-07-15 14:21:42 -04:00
|
|
|
bufferLogs: true,
|
2021-04-02 13:08:30 -04:00
|
|
|
});
|
2022-06-19 15:23:56 -04:00
|
|
|
|
|
|
|
// Set up our custom logger
|
2021-04-02 13:08:30 -04:00
|
|
|
const logger = await app.resolve(ConsoleLoggerService);
|
2020-09-27 15:48:42 -04:00
|
|
|
logger.log('Switching logger', 'AppBootstrap');
|
|
|
|
app.useLogger(logger);
|
2022-06-19 15:23:56 -04:00
|
|
|
|
|
|
|
// Initialize config and abort if we don't have a valid config
|
2020-10-30 17:35:57 -04:00
|
|
|
const configService = app.get(ConfigService);
|
|
|
|
const appConfig = configService.get<AppConfig>('appConfig');
|
2021-08-31 07:36:13 -04:00
|
|
|
const authConfig = configService.get<AuthConfig>('authConfig');
|
2021-01-15 10:57:04 -05:00
|
|
|
const mediaConfig = configService.get<MediaConfig>('mediaConfig');
|
2022-06-21 10:16:40 -04:00
|
|
|
if (!appConfig || !authConfig || !mediaConfig) {
|
2021-04-29 10:22:01 -04:00
|
|
|
logger.error('Could not initialize config, aborting.', 'AppBootstrap');
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
2022-06-19 15:23:56 -04:00
|
|
|
// Call common setup function which handles the rest
|
|
|
|
// Setup code must be added there!
|
2022-06-21 10:16:40 -04:00
|
|
|
await setupApp(app, appConfig, authConfig, mediaConfig, logger);
|
2021-08-31 07:36:13 -04:00
|
|
|
|
2022-06-19 15:23:56 -04:00
|
|
|
// Start the server
|
2020-10-30 17:35:57 -04:00
|
|
|
await app.listen(appConfig.port);
|
|
|
|
logger.log(`Listening on port ${appConfig.port}`, 'AppBootstrap');
|
2020-07-21 15:24:56 -04:00
|
|
|
}
|
|
|
|
|
2021-02-24 15:08:08 -05:00
|
|
|
void bootstrap();
|