From 1461bb002e1eb857ebb3e4d7901e5d98f27293f4 Mon Sep 17 00:00:00 2001 From: Ashhhleyyy Date: Tue, 26 Jul 2022 22:05:46 +0100 Subject: [PATCH] docs: update .env.template to match new environment variables --- .env.template | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.env.template b/.env.template index 50c6f3f..545123a 100644 --- a/.env.template +++ b/.env.template @@ -1,6 +1,21 @@ # Example configuration # Copy this to .env and adjust as required + +# Options for keycloak authentication 'admin auth' KEYCLOAK_ID= KEYCLOAK_SECRET= KEYCLOAK_ISSUER= + +# Used for Discord login +DISCORD_CLIENT_ID= +DISCORD_CLIENT_SECRET= + +# Used for GitHub login +GITHUB_CLIENT_ID= +GITHUB_CLIENT_SECRET= + +# Discord webhook to log audit events to +AUDIT_WEBHOOK= + +# Path to the database file (relative to the prisma directory) DATABASE_URL="file:./database.db"