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.

deadtom 59c179bdf1 Update 'README.md' há 1 semana atrás
checklist 56a2f2a0fc Changed check to cross off há 1 semana atrás
screenshots 9186468462 better screenshots há 1 semana atrás
.gitignore a69ab646e2 Added uncheck option há 1 semana atrás
License b94308c665 Reorganized structure há 1 semana atrás
ListBackground.png 9dc5a8e984 Added opaque background for OBS há 2 meses atrás
README.md 59c179bdf1 Update 'README.md' há 1 semana atrás
pyproject.toml 4b48f3b240 Upload files to '' há 2 meses atrás
setup.py b94308c665 Reorganized structure há 1 semana atrás

README.md

ToDoList

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.

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 .

Deactivate your venv:

deactivate

Run ToDoList with:

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

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

Adding the list to your streaming software, as an overlay

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" 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.

Manage your check list

To add items to your list, or cross items off, go to:

http://localhost:5022