seitime-frappe/conf/conf.py
2013-03-05 14:12:33 +05:30

43 lines
803 B
Python

from __future__ import unicode_literals
# app configuration
# database config
db_name = 'yourdbname'
db_password = 'yourdbpassword'
# user attachments stored in
files_path = 'public/files'
# max file attachment size (default 1MB)
max_file_size = 1000000
# generate schema (.txt files)
developer_mode = 0
# clear cache on refresh
auto_cache_clear = 0
# email logs to admin (beta)
admin_email_notification = 0
# user timezone
user_timezone = 'Asia/Calcutta'
# dump backups here
backup_path = 'public/backups'
# outgoing mail settings
mail_server = None
mail_login = None
mail_password = None
mail_port = None
use_ssl = None
auto_email_id = None
# logging settings
log_file_name = 'logs/error_log.txt'
debug_log_dbs = []
log_level = 'logging.INFO'
log_file_size = 5000
log_file_backup_count = 5