2021-09-01 13:07:54 +02:00
|
|
|
STYLESHEET=volumetric-regimes.css
|
|
|
|
|
2021-06-16 16:46:25 +02:00
|
|
|
all: run
|
|
|
|
|
2021-09-01 13:07:54 +02:00
|
|
|
install:
|
|
|
|
python3 -m venv venv
|
|
|
|
./venv/bin/pip3 install etherpump
|
|
|
|
./venv/bin/etherpump init
|
|
|
|
|
2021-06-16 16:46:25 +02:00
|
|
|
run:
|
|
|
|
python3 -m http.server
|
|
|
|
|
2021-09-01 13:07:54 +02:00
|
|
|
update: wiki css
|
|
|
|
|
|
|
|
wiki:
|
|
|
|
# ---
|
|
|
|
# update the materials from the wiki, save it as Unfolded.html
|
2021-06-16 16:46:25 +02:00
|
|
|
python3 update.py
|
2021-09-01 13:07:54 +02:00
|
|
|
|
|
|
|
css:
|
|
|
|
# ---
|
|
|
|
# sync the CSS on the pad with the local print.css file
|
|
|
|
./venv/bin/etherpump gettext $(STYLESHEET) > ./css/print.css
|
|
|
|
@echo "Saving CSS: $(STYLESHEET) (pad) > print.css (file)"
|
2021-06-16 16:46:25 +02:00
|
|
|
|
|
|
|
upload:
|
|
|
|
scp -r Unfolded.html css js fonts varia:public_html/volumetric-regimes/
|
|
|
|
|
|
|
|
uploadimages:
|
|
|
|
scp -r images varia:public_html/volumetric-regimes/
|