From dfc57b84fdfdf5cc9f8f91baf38cd94306a1a0bb Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Thu, 29 Jan 2026 06:33:50 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Add=20example=20environment=20va?= =?UTF-8?q?riables=20for=20server=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../websites/pokedex.online/server/.env.example | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 code/websites/pokedex.online/server/.env.example diff --git a/code/websites/pokedex.online/server/.env.example b/code/websites/pokedex.online/server/.env.example new file mode 100644 index 0000000..82fb48b --- /dev/null +++ b/code/websites/pokedex.online/server/.env.example @@ -0,0 +1,17 @@ +# Environment Variables for Production + +# Challonge OAuth Configuration +CHALLONGE_CLIENT_ID=your_client_id_here +CHALLONGE_CLIENT_SECRET=your_client_secret_here +REDIRECT_URI=https://yourdomain.com/oauth/callback + +# Server Configuration +PORT=3000 +NODE_ENV=production +FRONTEND_URL=https://yourdomain.com + +# Session Security +SESSION_SECRET=generate_a_random_secret_key_here + +# Optional: Logging Level +LOG_LEVEL=info