We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de8bec4 commit 041a6f3Copy full SHA for 041a6f3
src/main.ts
@@ -30,10 +30,10 @@ async function bootstrap() {
30
const port = configService.get<number>('NODE_API_PORT') || 3000;
31
await app.listen(port, '0.0.0.0');
32
Logger.log(
33
- `${await app.getUrl()} - Enviroment: ${configService.get<string>(
+ `${await app.getUrl()} - Environment: ${configService.get<string>(
34
'NODE_ENV',
35
)}`,
36
- 'Enviroment',
+ 'Environment',
37
);
38
39
Logger.log(`Url for OpenApi: ${await app.getUrl()}/docs`, 'Swagger');
0 commit comments