config.py 804 B

1234567891011
  1. # Owncast stuff. Get this information from your Owncast admin panel
  2. ACCESS_TOKEN = '' # Get from your Owncast Admin panel -> Integrations -> Access Tokens
  3. OWNCAST_URL = 'https://your.owncast.site' # Either your external Owncast URL, or your local Owncast URL with the proper port number. (Example: http://localhost:8080)
  4. # OwnchatBot Configuration
  5. POINTS_INTERVAL = 5 # How long, in minutes, between points awards
  6. POINTS_AWARD = 5 # How many points awarded each interval?
  7. SECRET_KEY = '' # Needed for internal flask stuff. Generated during setup. DO NOT CHANGE
  8. PREFIX = '!' # Preceeds commands, so OwnchatBot knows what is a command
  9. MGMT_AUTH = '' # Needed to access the OwnchatBot management panel. See README.md for more details.
  10. GUNICORN = True # Integrate OwnchatBot logging into Gunicorn