Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 
 

47 rindas
892 B

  1. # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
  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. # max file attachment size (default 1MB)
  11. max_file_size = 1000000
  12. # generate schema (.txt files)
  13. developer_mode = 1
  14. # clear cache on refresh
  15. auto_cache_clear = 1
  16. # email logs to admin (beta)
  17. admin_email_notification = 0
  18. # user timezone
  19. user_timezone = 'Asia/Calcutta'
  20. # dump backups here
  21. backup_path = 'public/backups'
  22. # outgoing mail settings
  23. mail_server = None
  24. mail_login = None
  25. mail_password = None
  26. mail_port = None
  27. use_ssl = None
  28. auto_email_id = None
  29. # logging settings
  30. log_file_name = 'logs/error_log.txt'
  31. debug_log_dbs = []
  32. log_level = 'logging.INFO'
  33. log_file_size = 5000
  34. log_file_backup_count = 5