mirror of
https://github.com/yweber/lodel2.git
synced 2025-11-25 23:06:55 +01:00
23 lines
477 B
Python
23 lines
477 B
Python
#-*- coding: utf-8 -*-
|
|
## @package Lodel.settings_format Rules for settings
|
|
|
|
## @brief List mandatory configurations keys
|
|
MANDATORY = [
|
|
'debug',
|
|
'debug_sql',
|
|
'sitename',
|
|
'lodel2_lib_path',
|
|
'em_file',
|
|
'dynamic_code_file',
|
|
'ds_package',
|
|
'datasource',
|
|
'mh_classname',
|
|
'migration_options',
|
|
]
|
|
|
|
## @brief List allowed (but not mandatory) configurations keys
|
|
ALLOWED = [
|
|
'em_graph_output',
|
|
'em_graph_format',
|
|
'templates_base_dir'
|
|
]
|