Skip to content

Instantly share code, notes, and snippets.

@Mr-Malomz
Last active August 21, 2020 00:20
Show Gist options
  • Save Mr-Malomz/c09853134d7f2d0dc478ea9da21c279f to your computer and use it in GitHub Desktop.
Save Mr-Malomz/c09853134d7f2d0dc478ea9da21c279f to your computer and use it in GitHub Desktop.
TypeORM Configuration
import { TypeOrmModuleOptions } from '@nestjs/typeorm';
export const typeOrmConfig: TypeOrmModuleOptions = {
type: 'postgres',
host: 'localhost',
port: 5432,
username: 'postgres',
password: 'postgres',
database: 'authuser',
entities: [__dirname + '/../**/*.entity{.ts,.js}'],
synchronize: true,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment