Skip to content

Latest commit

 

History

History
49 lines (39 loc) · 1019 Bytes

File metadata and controls

49 lines (39 loc) · 1019 Bytes

roto-encabulator

A hot reloadable backend-frontend pair (or) htmx server side rendered app.
Take off first, then you can build the plane while flying.

Castle in the Sky

Setup

python3 -m venv venv
source venv/bin/activate
python3 -m pip install -r requirements.txt

Running

# (this is python black magic that lets you live-edit code)
python3 -m jurigged main.py
# or for normal running
python3 main.py

Development

pip3 freeze > requirements.txt

Rsync Example

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

Notes