795fb0eb60
redoc-cliはexpandResponsesは200のみとすると数値と認識されてしまい設定できないため202,204という指定にしています
8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
import { initDb } from '../db/postgre';
|
|
import 'reflect-metadata';
|
|
|
|
console.log('Connecting DB...')
|
|
initDb().then(() => {
|
|
console.log('Connedted!')
|
|
require(`./${process.argv[2]}`).default();
|
|
});
|