-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
21 lines (16 loc) · 704 Bytes
/
config.py
File metadata and controls
21 lines (16 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import os
_basedir = os.path.abspath(os.path.dirname(__file__))
DEBUG = False
ADMINS = frozenset(['encodes1@gmail.com'])
SECRET_KEY = 'w43234435'
SQLALCHEMY_DATABASE_URI = 'postgresql://httkqucklymdhl:IzdNP8SZMVxgRpewHNcxfNA_NV@ec2-54-243-181-9.compute-1.amazonaws.com/ddtqeemf8pggrq'
DATABASE_CONNECT_OPTIONS = {}
THREADS_PER_PAGE = 8
CSRF_ENABLED = True
CSRF_SESSION_KEY = "somethingimpossibletoguess"
RECAPTCHA_USE_SSL = False
RECAPTCHA_PUBLIC_KEY = 'blahblahblahblahblahblahblahblahblah'
RECAPTCHA_PRIVATE_KEY = 'blahblahblahblahblahblahprivate'
RECAPTCHA_OPTIONS = {'theme': 'white'}
UPLOAD_FOLDER = '//Users/mark/Projects/vooprint/app/static/uploads'
ALLOWED_EXTENSIONS = set(['jpg', 'jpeg'])