Add more warnings about using non-sqlite for snappea in the conf templates

See #252
This commit is contained in:
Klaas van Schelven
2025-10-23 21:58:49 +02:00
parent e55c0eb417
commit 314154a6b7

View File

@@ -24,6 +24,9 @@ USE_X_REAL_IP = True
# In the singleserver production setup, the database is SQLite. The single (unix) user is named `bugsink` and we put
# the database in its home directory:
DATABASES["default"]["NAME"] = '{{ base_dir }}/db.sqlite3'
# This is a "database as message queue" setup; If you're reading this and are thinking of replacing this particular
# DB with mysql/postgres, know that you "probably shouldn't".
DATABASES["snappea"]["NAME"] = '{{ base_dir }}/snappea.sqlite3'