You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
NestJS_Basic/nest-user-api/data-source.ts

14 lines
368 B

1 month ago
import { DataSource } from "typeorm";
export default new DataSource({
type: 'mysql',
host: 'localhost',
port: 3306,
username: 'root',
password: 'init00!!',
database: 'test_db',
entities: ['src/**/*.entity.ts'],
migrations: ['src/database/migrations/*.ts'],
migrationsTableName: 'migrations',
synchronize: false
});