Files
Docker/Voltaserve/idp/src/infra/env.ts
2024-04-17 20:22:30 +02:00

9 lines
153 B
TypeScript

import fs from 'fs'
import dotenv from 'dotenv'
if (fs.existsSync('.env.local')) {
dotenv.config({ path: '.env.local' })
} else {
dotenv.config()
}