Skip to content

Commit

Permalink
feat(app): Output process.env
Browse files Browse the repository at this point in the history
  • Loading branch information
thomashermine committed Oct 19, 2023
1 parent bb0d11d commit 015fe5c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();

0 comments on commit 015fe5c

Please sign in to comment.