Files
Picsur/backend/src/app.module.ts
2022-03-01 22:05:59 +01:00

34 lines
1.0 KiB
TypeScript

import { MiddlewareConsumer, Module, NestModule } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { AuthModule } from './routes/api/auth/auth.module';
import { ImageModule } from './routes/image/imageroute.module';
import { ServeStaticModule } from '@nestjs/serve-static';
import Config from './env';
import { DemoManagerModule } from './managers/demo/demomanager.module';
import { EImageBackend } from './backenddto/image.entity';
import { EUserBackend } from './backenddto/user.entity';
@Module({
imports: [
TypeOrmModule.forRoot({
type: 'postgres',
host: Config.database.host,
port: Config.database.port,
username: Config.database.username,
password: Config.database.password,
database: Config.database.database,
synchronize: true,
entities: [EUserBackend, EImageBackend],
}),
ServeStaticModule.forRoot({
rootPath: Config.static.frontendRoot,
}),
AuthModule,
ImageModule,
DemoManagerModule,
],
})
export class AppModule {
}