From 1ff0dcd1036285d45ef563c9dcc352503da1076e Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Fri, 30 Jan 2026 05:31:32 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20Add=20.env=20file=20for?= =?UTF-8?q?=20environment=20variable=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .env diff --git a/.env b/.env new file mode 100644 index 0000000..2e520e9 --- /dev/null +++ b/.env @@ -0,0 +1,12 @@ +# Discord OAuth Configuration +# These variables are read by Vite during build and embedded into the frontend bundle +# Get your values from https://discord.com/developers/applications + +VITE_DISCORD_CLIENT_ID=your_client_id_here +VITE_DISCORD_REDIRECT_URI=http://localhost:5173/oauth/callback + +# Backend server port +BACKEND_PORT=3099 + +# Node environment +NODE_ENV=development