mirror of
https://github.com/yweber/lodel2.git
synced 2026-04-01 08:37:15 +02:00
Modified Makefile (it was outdated) Modified the way of checking caller in _LeCrud.__new__ Modified the way the method is called by ACL wrapper
31 lines
577 B
Python
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
|