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

1234567891011121314151617181920212223
  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. ]
  16. ## @brief List allowed (but not mandatory) configurations keys
  17. ALLOWED = [
  18. 'em_graph_output',
  19. 'em_graph_format',
  20. 'templates_base_dir'
  21. ]