-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.yaml
73 lines (71 loc) · 1.85 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# zeitgeist configuration
---
database:
uri: 'sqlite:///%approot%/database.db'
app:
static_url_path: ''
static_folder: '%approot%/public'
template_folder: '%approot%/views'
flask:
DEBUG: true
SECRET_KEY: If you don't change this north korea is gonna hack you!
SESSION_COOKIE_NAME: zg
# expire permanent cookies in a year
PERMANENT_SESSION_LIFETIME: 31536000
# smtp server configuration:
MAIL_SERVER: localhost
MAIL_PORT: 25
MAIL_USE_TLS: false
MAIL_USE_SSL: false
MAIL_USERNAME: null
MAIL_PASSWORD: null
PYSCSS_LOAD_PATHS:
- '%approot%/bower_components/bootstrap-sass/assets/stylesheets'
celery:
CELERY_BROKER_URL: 'amqp://localhost'
CELERY_RESULT_BACKEND: 'amqp://localhost'
CELERY_TASK_SERIALIZER: 'json'
CELERY_RESULT_SERIALIZER: 'json'
CELERY_ACCEPT_CONTENT: ['json']
CELERY_TIMEZONE: 'Europe/Berlin'
CELERY_ENABLE_UTC: true
CELERY_DEFAULT_QUEUE: 'default'
event:
uri: 'amqp://localhost'
assets:
- '%approot%/public'
- '%approot%/bower_components'
# logging configuration:
# http://docs.python.org/2/library/logging.config.html#logging-config-dictschema
logger:
version: 1
formatters:
brief:
format: '%(asctime)s %(levelname)s [%(name)s] - %(message)s'
datefmt: '%H:%M:%S'
precise:
format: '%(asctime)s %(levelname)s [%(name)s] - %(message)s'
datefmt: '%Y-%m-%d %H:%M:%S'
loggers:
# if set to DEBUG will log SQL Queries:
'sqlalchemy.engine.base.Engine':
level: ERROR
handlers: [console]
passlib:
level: ERROR
handlers: [console]
flask:
level: DEBUG
handlers: [console]
kombu:
level: DEBUG
handlers: [console]
zgeist:
level: DEBUG
handlers: [console]
handlers:
console:
class : logging.StreamHandler
formatter : brief
level : DEBUG
stream : ext://sys.stdout