You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
418 B
Python
18 lines
418 B
Python
# Bot meta
|
|
BOT_NICKNAME = 'mybotname'
|
|
ROOMS = ['#monero-support']
|
|
ADMIN_NICKNAMES = ['lza_menace', 'needmoney90']
|
|
|
|
# DB
|
|
SQLITE_DB_PATH = './data/supportbot.sqlite'
|
|
|
|
# IRC
|
|
IRC_HOST = 'ajnvpgl6prmkb7yktvue6im5wiedlz2w32uhcwaamdiecdrfpwwgnlqd.onion'
|
|
|
|
# Reddit
|
|
PRAW_CLIENT_SECRET = 'xxxxxxxx'
|
|
PRAW_CLIENT_ID = 'xxxxxxxx'
|
|
PRAW_USERNAME = 'xxxxxxxx'
|
|
PRAW_PASSWORD = 'xxxxxxxx'
|
|
PRAW_USER_AGENT = 'r-monerosupport-dev-python'
|