Skip to content

Instantly share code, notes, and snippets.

@Vatsalya-singhi
Created March 27, 2025 18:52
Show Gist options
  • Save Vatsalya-singhi/4d677c660890727ac7f89d7160d05179 to your computer and use it in GitHub Desktop.
Save Vatsalya-singhi/4d677c660890727ac7f89d7160d05179 to your computer and use it in GitHub Desktop.
// app.module.ts
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
@Module({
// loads default .env file present in project directory
imports: [ConfigModule.forRoot()],
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment