update changelog

This commit is contained in:
Jan Dittberner 2014-05-31 18:05:14 +02:00
parent 1034fbbb52
commit 2b935c0c03
2 changed files with 7 additions and 0 deletions

View file

@ -1,5 +1,9 @@
Changelog
=========
* :support:`-` improve production settings
- no custom cache and database
- get `ALLOWED_HOSTS` and `SERVER_EMAIL` from environment variables
* :release:`0.1 <2014-05-31>`
* :feature:`-` intial support for creating LDAP users and groups

View file

@ -20,6 +20,9 @@ import os
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.abspath(os.path.join('..', 'gvaldap')))
os.environ['GVALDAP_ALLOWED_HOSTS'] = 'localhost'
os.environ['GVALDAP_SERVER_EMAIL'] = 'root@localhost'
# -- General configuration -----------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.