Merge branch 'master' into next

This commit is contained in:
Fabian Affolter 2016-07-23 09:32:22 +02:00
commit 6029679a51
No known key found for this signature in database
GPG key ID: DDF3D6F44AAB1336
42 changed files with 341 additions and 196 deletions

View file

@ -41,3 +41,16 @@ Configuration variables:
| PostgreSQL | `postgresql://SERVER_IP/DB_NAME` |
| PostgreSQL | `postgresql://scott:tiger@SERVER_IP/DB_NAME` |
## {% linkable_title Installation notes %}
Not all Python bindings for the choosen database engine can be installed directly. This section contains additional details which should help you to get it working.
### {% linkable_title MYSQL %}
For MySQL you may have to install a few dependencies:
```bash
$ sudo apt-get install libmysqlclient-dev
$ pip3 install mysqlclient
```