25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

54 lines
1.0 KiB

  1. # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
  2. # MIT License. See license.txt
  3. from __future__ import unicode_literals
  4. # app configuration
  5. # database config
  6. db_name = '%(db_name)s'
  7. db_password = '%(db_password)s'
  8. # user attachments stored in
  9. files_path = 'public/files'
  10. public_path = 'public'
  11. # max file attachment size (default 1MB)
  12. max_file_size = 1000000
  13. # max email size in bytes
  14. max_email_size = 0
  15. # total pop session timeout in seconds
  16. pop_timeout = 0
  17. # generate schema (.txt files)
  18. developer_mode = 0
  19. # clear cache on refresh
  20. auto_cache_clear = 0
  21. # email logs to admin (beta)
  22. admin_email_notification = 0
  23. # user timezone
  24. user_timezone = 'Asia/Calcutta'
  25. # dump backups here
  26. backup_path = 'public/backups'
  27. # outgoing mail settings
  28. mail_server = None
  29. mail_login = None
  30. mail_password = None
  31. mail_port = None
  32. use_ssl = None
  33. auto_email_id = None
  34. # logging settings
  35. log_file_name = 'logs/error_log.txt'
  36. debug_log_dbs = []
  37. log_level = 'logging.INFO'
  38. log_file_size = 5000
  39. log_file_backup_count = 5