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

12345678910111213141516171819202122232425
  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_options',
  13. 'migrationhandler_options',
  14. 'base_path',
  15. 'plugins',
  16. 'logging',
  17. ]
  18. ## @brief List allowed (but not mandatory) configurations keys
  19. ALLOWED = [
  20. 'em_graph_output',
  21. 'em_graph_format',
  22. 'templates_base_dir'
  23. ]