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.
 
 
 
 
 
 

44 lines
803 B

  1. from __future__ import unicode_literals
  2. # app configuration
  3. # database config
  4. db_name = 'yourdbname'
  5. db_password = 'yourdbpassword'
  6. # user attachments stored in
  7. files_path = 'public/files'
  8. # max file attachment size (default 1MB)
  9. max_file_size = 1000000
  10. # generate schema (.txt files)
  11. developer_mode = 0
  12. # clear cache on refresh
  13. auto_cache_clear = 0
  14. # email logs to admin (beta)
  15. admin_email_notification = 0
  16. # user timezone
  17. user_timezone = 'Asia/Calcutta'
  18. # dump backups here
  19. backup_path = 'public/backups'
  20. # outgoing mail settings
  21. mail_server = None
  22. mail_login = None
  23. mail_password = None
  24. mail_port = None
  25. use_ssl = None
  26. auto_email_id = None
  27. # logging settings
  28. log_file_name = 'logs/error_log.txt'
  29. debug_log_dbs = []
  30. log_level = 'logging.INFO'
  31. log_file_size = 5000
  32. log_file_backup_count = 5