A hot reloadable backend-frontend pair (or) htmx server side rendered app.
Take off first, then you can build the plane while flying.
python3 -m venv venv
source venv/bin/activate
python3 -m pip install -r requirements.txt
# (this is python black magic that lets you live-edit code)
python3 -m jurigged main.py
# or for normal running
python3 main.py
pip3 freeze > requirements.txt
Running it on a remote server:
# a=preserve links, n=dry run, v=verbose
$ rsync -anv --exclude '.git/' . username@remote_host:/root/directory
# remove the `n` to run for real
You can run it with screen:
screen -S rotoencabulator
python3 main.py
# ctrl+a+d to detach
# screen -r rotoencabulator to reattach