aboutsummaryrefslogtreecommitdiff
path: root/docs/configuration.rst
diff options
context:
space:
mode:
authorAlexis M <alexis@notmyidea.org>2019-10-07 16:44:50 +0200
committerAlexis Metaireau <alexis@notmyidea.org>2019-10-11 19:52:15 +0200
commit9fe84bc1a2ef088e345e6215cf2e2fa3b53fc2da (patch)
tree2961900daf437f475a85d9e085e04348bb3e4a86 /docs/configuration.rst
parent4dd9da8e7cfa7d384e1d3d0c40cb156493c4953e (diff)
downloadihatemoney-mirror-9fe84bc1a2ef088e345e6215cf2e2fa3b53fc2da.zip
ihatemoney-mirror-9fe84bc1a2ef088e345e6215cf2e2fa3b53fc2da.tar.gz
ihatemoney-mirror-9fe84bc1a2ef088e345e6215cf2e2fa3b53fc2da.tar.bz2
Enhance postgresql installation docs.
Diffstat (limited to 'docs/configuration.rst')
-rw-r--r--docs/configuration.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/configuration.rst b/docs/configuration.rst
index 4e04e7a..5b78707 100644
--- a/docs/configuration.rst
+++ b/docs/configuration.rst
@@ -27,7 +27,10 @@ format used can be found on `the SQLAlchemy documentation`_.
If you're using PostgreSQL, Your client must use utf8. Unfortunately,
PostgreSQL default is to use ASCII. Either change your client settings,
or specify the encoding by appending ``?client_encoding=utf8`` to the
-connection string.
+connection string. This will look like::
+
+ SQLALCHEMY_DATABASE_URI = 'postgresql://myuser:mypass@localhost/dbname?client_encoding=utf8'
+
`SECRET_KEY`
------------