Titan/webapp/config.example.py

31 lines
1.1 KiB
Python
Raw Normal View History

2017-03-26 11:30:16 +02:00
config = {
# Create an app over here https://discordapp.com/developers/applications/me
# and fill these fields out
2018-07-16 23:34:08 +02:00
'client-id': "Bot - Client ID",
'client-secret': "Bot - Secret",
'bot-token': "Bot - Token",
# Rest API in https://developer.paypal.com/developer/applications
'paypal-client-id': "Paypal client id",
'paypal-client-secret': "Paypal client secret",
2018-07-16 23:34:08 +02:00
# V2 reCAPTCHA from https://www.google.com/recaptcha/admin
'recaptcha-site-key': "reCAPTCHA v2 Site Key",
'recaptcha-secret-key': "reCAPTCHA v2 Secret Key",
2018-07-16 23:34:08 +02:00
2017-11-22 03:41:43 +01:00
# Patreon
'patreon-client-id': "Patreon client id",
'patreon-client-secret': "Patreon client secret",
2017-03-26 11:30:16 +02:00
'app-location': "/var/www/Titan/webapp/",
2017-03-26 11:30:16 +02:00
'app-secret': "Type something random here, go wild.",
'database-uri': "driver://username:password@host:port/database",
2017-08-20 21:56:54 +02:00
'redis-uri': "redis://",
'websockets-mode': "LITTERALLY None or eventlet or gevent",
2018-02-22 02:49:08 +01:00
'engineio-logging': False,
2018-07-16 23:34:08 +02:00
# https://titanembeds.com/api/webhook/discordbotsorg/vote
2018-07-16 23:34:08 +02:00
'discordbotsorg-webhook-secret': "Secret Code - Authencation Header",
2017-03-26 11:30:16 +02:00
}