From dc6223608abd6edf20864f9c638e32ea723dd0c2 Mon Sep 17 00:00:00 2001 From: Pau Costa Date: Mon, 26 Aug 2024 21:28:25 +0200 Subject: [PATCH] :memo: Add .env example to README.md --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index da886f3..0f47b9f 100644 --- a/README.md +++ b/README.md @@ -20,3 +20,16 @@ $ npm run start:dev # production mode $ npm run start:prod ``` + +## Secrets management + +The application expects a .env file in the root directory of the project +with the following variables set. + +```dotenv +# The discord token obtained from your dev dashboard, requires +# privileged intents. +DISCORD_TOKEN=your_discord_app_token_goes_here +# Optional, default port is 3000 +PORT=3000 +```