1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2026-04-27 02:40:57 +02:00
lodel2_mirror/settings.py
Yann f2a54b72cd Comments update for doxygen doc
Now we have a main page on doxygen
2016-01-08 13:52:37 +01:00

26 lines
432 B
Python

#-*- coding:utf8 -*-
## @package settings Configuration file
import pymysql
debug = False
debug_sql = False
datasource = {
'default': {
'module':pymysql,
'host': None,
'user': None,
'passwd': None,
'db': None,
}
}
migration_options = {
'dryrun': False,
'foreign_keys': True,
'drop_if_exists': False,
}
em_graph_format = 'png'
em_graph_output = '/tmp/em_%s_graph.png'