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.
|
1 vecka sedan | |
---|---|---|
screenshots | 1 vecka sedan | |
todolist | 1 vecka sedan | |
.gitignore | 1 vecka sedan | |
License | 1 vecka sedan | |
ListBackground.png | 2 månader sedan | |
README.md | 1 vecka sedan | |
pyproject.toml | 1 vecka sedan | |
setup.py | 1 vecka sedan |
A web based app to add and cross items off a list, which outputs a page that can be set up as a browser source in OBS.
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
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.
Create a browser source, and point it to:
http://localhost:5022/list
Be sure to cross 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.
To add items to your list, or cross items off, go to:
http://localhost:5022