summaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authordan <[email protected]>2023-02-28 10:44:28 -0500
committerdan <[email protected]>2023-02-28 10:44:28 -0500
commitcb1b352f44655a5ac0d4113b32b8b42a7f7e9dc5 (patch)
treec8720d03ef5ca6e29d4e48f8329fb0cc00cd8d0e /makefile
parent37db988e1aa49411e6000df64220aeebf8c4a198 (diff)
download54-cb1b352f44655a5ac0d4113b32b8b42a7f7e9dc5.tar.gz
54-cb1b352f44655a5ac0d4113b32b8b42a7f7e9dc5.tar.bz2
54-cb1b352f44655a5ac0d4113b32b8b42a7f7e9dc5.zip
fix vhosts map; fix mobile width; increase text field font size; restyle login form; stylesheet is downloaded separately to html
Diffstat (limited to 'makefile')
-rw-r--r--makefile17
1 files changed, 16 insertions, 1 deletions
diff --git a/makefile b/makefile
index af9f79d..31512c3 100644
--- a/makefile
+++ b/makefile
@@ -1,2 +1,17 @@
build: ./main.scm
- chicken-csc ./main.scm
+ mkdir -p ./build
+ chicken-csc -static ./main.scm -L -lsqlite3
+ mv ./main ./build/main
+deploy: build
+ cp ./style.css ./build/style.css
+ scp ./build/* dotemgo-tasks_root:/root/
+ ssh dotemgo-tasks_root 'systemctl stop itter.service \
+ && mv /root/main /root/54itter \
+ && systemctl start itter.service'
+upload-service:
+ scp itter.service dotemgo-tasks_root:/etc/systemd/system/
+ ssh dotemgo-tasks_root 'systemctl daemon-reload && systemctl restart itter.service'
+clean:
+ rm -r build/
+status:
+ ssh dotemgo-tasks_root 'systemctl status itter.service'