-
Notifications
You must be signed in to change notification settings - Fork 21
/
defaults.py
33 lines (24 loc) · 928 Bytes
/
defaults.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
DEBUG = True
SECRET_KEY = 'insecure'
SQLALCHEMY_DATABASE_URI = 'postgresql://crestify:crestify@localhost/crestify'
SECURITY_REGISTERABLE = True
SECURITY_RECOVERABLE = True
SECURITY_EMAIL_SENDER = '[email protected]'
SECURITY_CONFIRMABLE = False
SECURITY_CHANGEABLE = True
SECURITY_CHANGE_URL = '/manager/settings/changepassword'
SECURITY_PASSWORD_HASH = 'bcrypt'
SECURITY_PASSWORD_SALT = 'insecure'
SECURITY_SEND_REGISTER_EMAIL = False # Disable sending register email so we don't need SMTP
MAIL_SERVER = 'smtp.mailserver.com'
MAIL_PORT = 587
MAIL_USE_SSL = False
MAIL_USERNAME = '[email protected]'
MAIL_PASSWORD = 'insecure'
CELERY_BROKER_URL = 'amqp://'
CELERY_IMPORTS = (["crestify.tasks.bookmark_tasks"])
CELERY_ACCEPT_CONTENT = ['pickle']
CRESTIFY_UPLOAD_DIRECTORY = '/tmp/crestify/uploads'
WEB_SERVER_IP = '127.0.0.1'
MIXPANEL_PROJECT_TOKEN = ''
HASHIDS_SALT = "&*6j3ji]/~B o38#y!a>X$$~x@8^n>v(*FJhjJ8*ok234"