config-template.toml: fix postgres section and keys

This commit is contained in:
2026-01-12 03:17:16 +09:00
parent 2fccf882d7
commit 30f8ae6093
+2 -2
View File
@@ -9,12 +9,12 @@ type = 'sqlite'
[database.sqlite] [database.sqlite]
path = './worblehat.sqlite' path = './worblehat.sqlite'
[database.postgres] [database.postgresql]
host = 'localhost' host = 'localhost'
port = 5432 port = 5432
username = 'worblehat' username = 'worblehat'
password = '/var/lib/worblehat/db-password' # path or plain text password = '/var/lib/worblehat/db-password' # path or plain text
name = 'worblehat' database = 'worblehat'
# See https://flask.palletsprojects.com/en/2.3.x/config/ # See https://flask.palletsprojects.com/en/2.3.x/config/
[flask] [flask]