Skip to content
Snippets Groups Projects
Commit cae7d2da authored by Ivan Alglave's avatar Ivan Alglave
Browse files

added config support

parent 053bbd74
No related branches found
No related tags found
No related merge requests found
export interface IServerConfig {
port: number;
}
export interface IConfig {
server: IServerConfig;
}
{
"server": {
"port": 0
}
}
import _config from './config.json';
import { IConfig } from './config.model';
const config = _config as IConfig;
export const server = config.server;
export default config;
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import { server } from './config';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000);
await app.listen(server.port);
}
bootstrap();
......@@ -16,6 +16,7 @@
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false
"noFallthroughCasesInSwitch": false,
"resolveJsonModule": true
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment