Skip to content

Commit

Permalink
dbtype postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruiz committed Oct 5, 2023
1 parent 8abb133 commit 665f1a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion env-deploy
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ APP_HEADER_LANGUAGE=x-custom-lang
FRONTEND_DOMAIN=http://localhost:3000
BACKEND_DOMAIN=http://localhost:3000

DATABASE_TYPE=aurora-postgres
DATABASE_TYPE=postgres
DATABASE_HOST=api-cct-postgresql
DATABASE_PORT=5432
DATABASE_USERNAME=postgres
Expand Down
4 changes: 2 additions & 2 deletions src/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Module } from '@nestjs/common';
import { UsersModule } from './users/users.module';
// import { FilesModule } from './files/files.module';
import { FilesModule } from './files/files.module';
import { AuthModule } from './auth/auth.module';
import databaseConfig from './config/database.config';
import authConfig from './config/auth.config';
Expand Down Expand Up @@ -84,7 +84,7 @@ import { TicketRevenuesModule } from './ticket-revenues/ticket-revenues.module';
inject: [ConfigService],
}),
UsersModule,
// FilesModule,
FilesModule,
AuthModule,
AuthFacebookModule,
AuthGoogleModule,
Expand Down

0 comments on commit 665f1a6

Please sign in to comment.