-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathconfig.py
36 lines (25 loc) · 832 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
"""Settings for bull installation."""
from os.path import abspath, dirname, join
_cwd = dirname(abspath(__file__))
# Subject of the email sent after purchase
# MAIL_SUBJECT =
# Email address for the 'from' field of the generated email
# MAIL_FROM =
# Email server address
# MAIL_SERVER =
# Email server username
# MAIL_USERNAME =
# Email server password
# MAIL_PASSWORD =
# Email server port
# MAIL_PORT =
# Use SSL for email?
# MAIL_USE_SSL =
# Website address, for use in Stripe purchases and in email
# SITE_ADDRESS =
# Database URI for SQLAlchmey (Default: 'sqlite+pysqlite3:///sqlite3.db')
# SQLALCHEMY_DATABASE_URI = 'sqlite+pysqlite:///sqlite3.db'
# Stripe secret key to be used to process purchases
STRIPE_SECRET_KEY = 'foo'
# Stripe public key to be used to process purchases
STRIPE_PUBLIC_KEY = 'bar'