-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.py
45 lines (38 loc) · 983 Bytes
/
config.py
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
#!/usr/bin/env python
# encoding: utf-8
"""
Config for Willie-Lumberjack web server.
"""
PROJECT = 'Willie-Lumberjack'
APPNAME = PROJECT
#. bottle
BIND_HOST = '127.0.1.1'
BIND_PORT = 8080
LOGFILE = '/tmp/web.log'
PIDFILE = '/tmp/web.pid'
#. redis
REDIS_HOST = 'irc.lab'
REDIS_PORT = 6379
REDIS_DBID = 0
#. log
LOG_PATH = '/tmp/lumberjack/'
#. theme
DEFAULT_THEME = 'yeti'
WIDGET_THEME= 'spacelab'
BOOTSWATCH_THEMES = {
'amelia' : 'Sweet and cheery',
'cerulean' : 'A calm, blue sky',
'cosmo' : 'An ode to Metro',
'cyborg' : 'Jet black and electric blue',
'flatly' : 'Flat and modern',
'journal' : 'Crisp like a new sheet of paper',
'readable' : 'Optimized for legibility',
'simplex' : 'Mini and minimalist',
'slate' : 'Shades of gunmetal gray',
'spacelab' : 'Silvery and sleek',
'united': 'Ubuntu orange and unique font',
'yeti': 'A friendly foundation',
}
#. google analytics
GA_ID = 'UA-45811881-1'
GA_ACCOUNT = 'ultrab0t.net'