13 lines
282 B
Python
13 lines
282 B
Python
ORG_NAME = 'Your Organisation Here'
|
|
|
|
REDDIT_OAUTH_CLIENT_ID = 'xxxxxxxxxxxxxx'
|
|
REDDIT_OAUTH_CLIENT_SECRET = 'xxxxxxxxxxxxxxxxxxxxxxxxxxx'
|
|
|
|
SECRET_KEY = 'xxxxxxxxxxxxxxxxxxxxxxxx'
|
|
|
|
REDDIT_USER_AGENT = 'Application Title by /u/Your_Username'
|
|
|
|
AUTH_METHODS = [
|
|
('reddit', 'Reddit')
|
|
]
|