Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
http.config.ts 186 B
import { registerAs } from '@nestjs/config';

export const httpConfig = registerAs('http', () => ({
  host: process.env.HOST || '0.0.0.0',
  port: Number(process.env.PORT) || 3000,
}));