No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

settings_format.py 524B

1234567891011121314151617181920212223242526
  1. #-*- coding: utf-8 -*-
  2. ## @package Lodel.settings_format Rules for settings
  3. ## @brief List mandatory configurations keys
  4. MANDATORY = [
  5. 'debug',
  6. 'debug_sql',
  7. 'sitename',
  8. 'lodel2_lib_path',
  9. 'em_file',
  10. 'dynamic_code_file',
  11. 'ds_package',
  12. 'datasource',
  13. 'mh_classname',
  14. 'migration_options',
  15. 'base_path',
  16. 'plugins',
  17. 'logging',
  18. ]
  19. ## @brief List allowed (but not mandatory) configurations keys
  20. ALLOWED = [
  21. 'em_graph_output',
  22. 'em_graph_format',
  23. 'templates_base_dir'
  24. ]