From 314154a6b78a17e4442fea4da72b3037ae219923 Mon Sep 17 00:00:00 2001 From: Klaas van Schelven Date: Thu, 23 Oct 2025 21:58:49 +0200 Subject: [PATCH] Add more warnings about using non-sqlite for snappea in the conf templates See #252 --- bugsink/conf_templates/singleserver.py.template | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bugsink/conf_templates/singleserver.py.template b/bugsink/conf_templates/singleserver.py.template index 9704a8c..854a482 100644 --- a/bugsink/conf_templates/singleserver.py.template +++ b/bugsink/conf_templates/singleserver.py.template @@ -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'