forked from glitchdotcom/WebPutty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.py
33 lines (28 loc) · 930 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
# 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 <you@example.com>' % appname
incoming_sender_email = '%s Incoming Mail <you@example.com>' % appname
log_all_incoming = True
# List of admins to forward mail to.
forward_mail_to = ['you@example.com']
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',
)