1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2025-11-25 23:06:55 +01:00
lodel2_mirror/settings.py

24 lines
374 B
Python

#-*- coding:utf8 -*-
import pymysql
debug = 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'