Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 742 Bytes

Begins_Comp_Crashes_Runbook.md

File metadata and controls

50 lines (33 loc) · 742 Bytes

Begin's Comp died - Restart Speedrun

  • I am running my server for Twitch eventsub locally!

    • so if it crashes...I have to unsub to all my events:
  • restart on ngrok on 8080

ngrok http 8080
  • list all previous subs, and grab the IDs
cd code/eventsub-python-fun
./list.sh | jq -r ".data[].id"
  • Take the IDs and update the unsub.sh script with the IDs

  • Run the unsub.sh script

./unsub.sh
  • Update the sub scripts NGROK URL and resub
./sub.sh

Run the Webserver

python main.py

Event Sub Server

cd code/eventsub-python-fun
source venv/bin/activate