Resolve #4925
This commit is contained in:
parent
678d610cd6
commit
e5409db0e8
4 changed files with 23 additions and 22 deletions
18
src/ormconfig.ts
Normal file
18
src/ormconfig.ts
Normal file
|
@ -0,0 +1,18 @@
|
|||
import * as fs from 'fs';
|
||||
import config from './config';
|
||||
|
||||
const json = {
|
||||
type: 'postgres',
|
||||
host: config.db.host,
|
||||
port: config.db.port,
|
||||
username: config.db.user,
|
||||
password: config.db.pass,
|
||||
database: config.db.db,
|
||||
entities: ['src/models/entities/*.ts'],
|
||||
migrations: ['migration/*.ts'],
|
||||
cli: {
|
||||
migrationsDir: 'migration'
|
||||
}
|
||||
};
|
||||
|
||||
fs.writeFileSync('ormconfig.json', JSON.stringify(json));
|
Loading…
Add table
Add a link
Reference in a new issue