-
Notifications
You must be signed in to change notification settings - Fork 121
/
settings.py
34 lines (29 loc) · 958 Bytes
/
settings.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
# coding=utf-8
import os
debug = os.environ.get('SERVER_SOFTWARE', '').startswith('Dev')
debug_profiler_enabled = False
appname = 'WebPutty OSS'
appversion_raw = [1, 3, 0]
appversion = '.'.join([str(num) for num in appversion_raw])
invite_sender_email = '%s Invitation <[email protected]>' % appname
incoming_sender_email = '%s Incoming Mail <[email protected]>' % appname
log_all_incoming = True
# List of admins to forward mail to.
admin_emails = ['[email protected]']
forward_mail_to = admin_emails
jquery_url = '//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js'
# Generate this once by calling os.urandom(24)
secret_key = "Shhh... It's a secret."
# Name of the Google Cloud Storage bucket
use_google_cloud_storage = False
google_bucket = 'yourbucket'
available_locales = [
('en', u'English'),
('fr', u'Français'),
]
# API Keys for url2png.com
url2png = dict(
user = 'USERNAME',
password = 'PASSWORD',
bounds = '300x300',
)