1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2026-04-01 08:37:15 +02:00
lodel2_mirror/settings.py
Yann 912f27d4bf Disabled wrapper in default settings + some little modifications
Modified Makefile (it was outdated)
Modified the way of checking caller in _LeCrud.__new__
Modified the way the method is called by ACL wrapper
2016-02-15 09:52:04 +01:00

31 lines
577 B
Python

#-*- coding:utf8 -*-
## @package settings Configuration file
import pymysql
import os
lodel2_lib_path = os.path.dirname(os.path.abspath(__file__))
base_path = os.path.dirname(os.path.abspath(__file__))
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'
acl_bypass = True