From 8a7995b33ec03e599d84a800a815e965822023f7 Mon Sep 17 00:00:00 2001 From: sloppyjosh Date: Thu, 22 Feb 2024 01:15:16 -0500 Subject: [PATCH] basic test file --- src/index.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/index.ts b/src/index.ts index e69de29..7ab8e44 100644 --- a/src/index.ts +++ b/src/index.ts @@ -0,0 +1,8 @@ +import dotenv from 'dotenv'; +dotenv.config(); + +const redditUsername = process.env.redditUsername; +const redditPassword = process.env.redditPassword; +const rdramaApiKey = process.env.rdramaApiKey; + +console.log(redditUsername, redditPassword, rdramaApiKey);