A web based app to add and check items off a list, which outputs a page that can be set up as a browser source in OBS.

allens e136a25459 Added screenshots 11 tháng trước cách đây
checklist c419e9a1fc Removed debugging lines 11 tháng trước cách đây
screenshots e136a25459 Added screenshots 11 tháng trước cách đây
.gitignore a69ab646e2 Added uncheck option 11 tháng trước cách đây
License b94308c665 Reorganized structure 11 tháng trước cách đây
ListBackground.png 9dc5a8e984 Added opaque background for OBS 1 năm trước cách đây
README.md c992d71906 Updated with screenshots and better setup/run instructions 11 tháng trước cách đây
pyproject.toml 4b48f3b240 Upload files to '' 1 năm trước cách đây
setup.py b94308c665 Reorganized structure 11 tháng trước cách đây

README.md

Checklist

A web based app to add and check items off a list, which outputs a page that can be set up as a browser source in OBS.

Screenshots

  

Setup

Create your venv, and activate it:

python3 -m venv env
source env/bin/activate

Upgrade pip, and install dependancies:

pip install --upgrade pip
pip install -e .

Run Checklist with:

env/bin/python -m gunicorn -b 0.0.0.0:5022 -w 1 'checklist:create_app()'

Of course, if you prefer to run your flask apps with something else, go for it.

In your streaming software

Create a browser source, and point it to:

http://localhost:5022/list

Be sure to check the box for "Refresh browser when scene becomes active"

To manage your check list, go to:

http://localhost:5022

I've included "ListBackground.png" for use as an opaque background for your list in your streaming software, but of course use whatever you like.