From 8f8c079bbf4763eb3b11a27f44d94681c725563f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Valenta?= <git@imaniti.org> Date: Fri, 30 Jun 2023 19:44:21 +0900 Subject: [PATCH] add .gitignore, env example --- .gitignore | 2 ++ env.example | 8 ++++++++ 2 files changed, 10 insertions(+) create mode 100644 .gitignore create mode 100644 env.example diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..d50a09fc --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.env +__pycache__/ diff --git a/env.example b/env.example new file mode 100644 index 00000000..7936b8dd --- /dev/null +++ b/env.example @@ -0,0 +1,8 @@ +OIDC_RP_REALM_URL="http://localhost:8080/realms/master/" +OIDC_RP_CLIENT_ID=generator +OIDC_RP_CLIENT_SECRET=VCn4LVAUc6RGLSup7VaAKsmrKUbWguaP + +SITE_URL=https://generator.pirati.cz + +SECRET_KEY=qwertzuiopasdfghjklyxcvbnm +JWT_SECRET_KEY=qwertzuiopasdfghjklyxcvbnm -- GitLab