app.module.ts
822 Bytes
import { Module } from '@nestjs/common';
import { GraphQLModule } from '@nestjs/graphql';
import { TypeOrmModule } from '@nestjs/typeorm';
import { join } from 'path';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { MypageModule } from './mypage/mypage.module';
import { PostModule } from './post/post.module';
@Module({
imports: [
GraphQLModule.forRoot({
autoSchemaFile: join(process.cwd(), 'src/schema.gql'),
sortSchema: true,
}),
TypeOrmModule.forRoot({
type: 'sqlite',
database: 'database.db',
entities: ['dist/**/*.entity{.ts,.js}'],
synchronize: false,
logging: false,
}),
MypageModule,
PostModule,
],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}