2017-11-26 11:16:57 +11:00
|
|
|
ORG_NAME = 'Your Organisation Here'
|
|
|
|
|
|
|
|
SECRET_KEY = 'xxxxxxxxxxxxxxxxxxxxxxxx'
|
|
|
|
|
|
|
|
AUTH_METHODS = [
|
2017-11-26 20:48:15 +11:00
|
|
|
('email', 'Email'),
|
2017-11-26 11:16:57 +11:00
|
|
|
('reddit', 'Reddit')
|
|
|
|
]
|
2017-11-26 20:48:15 +11:00
|
|
|
|
|
|
|
# Email
|
|
|
|
|
|
|
|
SMTP_HOST, SMTP_PORT = 'localhost', 25
|
|
|
|
SMTP_USER, SMTP_PASS = None, None
|
|
|
|
SMTP_FROM = 'eos@localhost'
|
|
|
|
|
|
|
|
# Reddit
|
|
|
|
|
|
|
|
REDDIT_OAUTH_CLIENT_ID = 'xxxxxxxxxxxxxx'
|
|
|
|
REDDIT_OAUTH_CLIENT_SECRET = 'xxxxxxxxxxxxxxxxxxxxxxxxxxx'
|
|
|
|
REDDIT_USER_AGENT = 'Application Title by /u/Your_Username'
|