Browse Source

add profile

main
Martin 5 years ago
parent
commit
2ba27d038d
  1. 1
      Procfile
  2. 10672
      package-lock.json
  3. 5
      src/app.module.ts

1
Procfile

@ -0,0 +1 @@
web: yarn start

10672
package-lock.json
File diff suppressed because it is too large
View File

5
src/app.module.ts

@ -18,6 +18,11 @@ import { TypeOrmModule, TypeOrmModuleOptions } from '@nestjs/typeorm';
entities: [__dirname + '/**/*.entity{.ts,.js}'], entities: [__dirname + '/**/*.entity{.ts,.js}'],
synchronize: true, synchronize: true,
logging: configService.isLoggingDb ? 'all' : false, logging: configService.isLoggingDb ? 'all' : false,
extra: {
ssl: {
rejectUnauthorized: false,
},
},
}), }),
inject: [ConfigService], inject: [ConfigService],
}), }),

Loading…
Cancel
Save