From 015fe5c0fd95661ca08caa677706bab692ae9fea Mon Sep 17 00:00:00 2001 From: Thomas Hermine Date: Thu, 19 Oct 2023 13:52:06 +0200 Subject: [PATCH] feat(app): Output process.env --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index 63cc454..74857e9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,6 +2,8 @@ import 'dotenv/config'; async function main() { console.log("Hello, world!"); + console.log('Here are your environnment variables:'); + console.log(process.env); } main(); \ No newline at end of file