|
@@ -1,13 +1,14 @@
|
|
|
# Owncast stuff. Get this information from your Owncast admin panel
|
|
# Owncast stuff. Get this information from your Owncast admin panel
|
|
|
-ACCESS_TOKEN = '' # Get from your Owncast Admin panel -> Integrations -> Access Tokens
|
|
|
|
|
|
|
+ACCESS_TOKEN = '' # Create one of these at your Owncast Admin panel -> Integrations -> Access Tokens
|
|
|
OWNCAST_URL = '' # Either your external Owncast URL, or your local Owncast URL with the proper port number. (Example: http://localhost:8080)
|
|
OWNCAST_URL = '' # Either your external Owncast URL, or your local Owncast URL with the proper port number. (Example: http://localhost:8080)
|
|
|
|
|
+INDIEAUTH_CLIENT_ID = '' # Create a new access token at Owncast Admin panel -> Integrations -> Access Tokens, this variable is the name you associate with that token
|
|
|
|
|
+INDIEAUTH_CLIENT_SECRET = '' # The access token you created for INDIEAUTH_CLIENT_ID
|
|
|
|
|
|
|
|
# OwnchatBot Configuration
|
|
# OwnchatBot Configuration
|
|
|
POINTS_INTERVAL = 5 # How long, in minutes, between points awards
|
|
POINTS_INTERVAL = 5 # How long, in minutes, between points awards
|
|
|
POINTS_AWARD = 5 # How many points awarded each interval?
|
|
POINTS_AWARD = 5 # How many points awarded each interval?
|
|
|
SECRET_KEY = '' # Needed for internal flask stuff. Generated during setup. DO NOT CHANGE
|
|
SECRET_KEY = '' # Needed for internal flask stuff. Generated during setup. DO NOT CHANGE
|
|
|
PREFIX = '!' # Preceeds commands, so OwnchatBot knows what is a command
|
|
PREFIX = '!' # Preceeds commands, so OwnchatBot knows what is a command
|
|
|
-MGMT_AUTH = '' # Needed to access the OwnchatBot management panel. See README.md for more details.
|
|
|
|
|
GUNICORN = True # Integrate OwnchatBot logging into Gunicorn
|
|
GUNICORN = True # Integrate OwnchatBot logging into Gunicorn
|
|
|
KOFI_TOKEN = '' # Needed to validate Ko-fi with OCB webhook. Get from Ko-fi Settings -> More -> API -> Webhooks -> Advanced - Verification Token.
|
|
KOFI_TOKEN = '' # Needed to validate Ko-fi with OCB webhook. Get from Ko-fi Settings -> More -> API -> Webhooks -> Advanced - Verification Token.
|
|
|
KOFI_INTEGRATION = False # Integrate OwnchatBot with Ko-fi
|
|
KOFI_INTEGRATION = False # Integrate OwnchatBot with Ko-fi
|