Fix indentation in Docs

Wrong indentation in doc/source/install/manual.rst is interpreted as quotation.

Change-Id: I0e31a2a813d4384eef2cf36d470b43a0fc71e884
This commit is contained in:
David Rabel 2018-02-06 11:08:25 +01:00
parent 849a579b3a
commit 4591be64a5
1 changed files with 13 additions and 13 deletions

View File

@ -30,27 +30,27 @@ one of the listed database backends below to store Panko data.
MongoDB
-------
Follow the instructions to install the MongoDB_ package for your operating
system, then start the service. The required minimum version of MongoDB is
2.4.x. You will also need to have pymongo_ 2.4 installed
Follow the instructions to install the MongoDB_ package for your operating
system, then start the service. The required minimum version of MongoDB is
2.4.x. You will also need to have pymongo_ 2.4 installed
To use MongoDB as the storage backend, change the 'database' section in
panko.conf as follows::
To use MongoDB as the storage backend, change the 'database' section in
panko.conf as follows::
[database]
connection = mongodb://username:password@host:27017/panko
[database]
connection = mongodb://username:password@host:27017/panko
SQLalchemy-supported DBs
------------------------
You may alternatively use any SQLAlchemy-supported DB such as
`PostgreSQL` or `MySQL`.
You may alternatively use any SQLAlchemy-supported DB such as
`PostgreSQL` or `MySQL`.
To use MySQL as the storage backend, change the 'database' section in
panko.conf as follows::
To use MySQL as the storage backend, change the 'database' section in
panko.conf as follows::
[database]
connection = mysql+pymysql://username:password@host/panko?charset=utf8
[database]
connection = mysql+pymysql://username:password@host/panko?charset=utf8
.. _MongoDB: http://www.mongodb.org/