12345678910111213141516171819202122232425262728293031 |
- #-*- 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
|