14 lines
266 B
Makefile
14 lines
266 B
Makefile
|
all: run
|
||
|
|
||
|
run:
|
||
|
python3 -m http.server
|
||
|
|
||
|
update:
|
||
|
python3 update.py
|
||
|
|
||
|
upload:
|
||
|
scp -r ./static/Unfolded.html ./static/css/ ./static/js/ ./static/fonts/ varia:public_html/volumetric-regimes/
|
||
|
|
||
|
uploadimages:
|
||
|
scp -r ./static/images/ varia:public_html/volumetric-regimes/
|