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 492B

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