From e66aa31e18b5f7783cc898b1ed99b4e01b532a3a Mon Sep 17 00:00:00 2001
From: Thomas Schneider <thomas@fsmpi.rwth-aachen.de>
Date: Thu, 5 Sep 2024 17:43:34 +0200
Subject: [PATCH] Add example config

---
 examples/config.py | 8 ++++++++
 1 file changed, 8 insertions(+)
 create mode 100644 examples/config.py

diff --git a/examples/config.py b/examples/config.py
new file mode 100644
index 0000000..ca8a381
--- /dev/null
+++ b/examples/config.py
@@ -0,0 +1,8 @@
+SQLALCHEMY_DATABASE_URI = "postgresql+psycopg:///schilder2000"
+# To generate a secret key:
+#   % python -c 'import secrets; print(secrets.token_hex())'
+SECRET_KEY = "abc123"  # Replace me!
+TEMPLATES_AUTO_RELOAD = True
+
+SCHILD_FOOTER = "Organization Without a Cool Acronym – O.W.C.A."
+SCHILD_LOGO = "img/owca.png"
-- 
GitLab