aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorEddy Pedroni <epedroni@pm.me>2025-07-17 15:31:43 +0200
committerEddy Pedroni <epedroni@pm.me>2025-07-17 15:31:43 +0200
commit25b7a93d25e490c516b87ad4a57e27173d886b59 (patch)
tree70c94cac8998e70fc130700fb37fa03f43a691e2 /Makefile
parent8fdbcd3b98f5bf5479e2a67e40f5746b184908d3 (diff)
Fix CLI
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0fc9a3b..7ebeaac 100644
--- a/Makefile
+++ b/Makefile
@@ -23,6 +23,9 @@ web-deploy: .venv/touchfile
web-dev: .venv/touchfile
./.venv/bin/python web-project/src/solo_tool_web.py
+cli: .venv/touchfile
+ ./.venv/bin/solo-tool-cli https://files.0xf7.com amboss
+
install: deployment/solo-tool.service deployment/start-solo-tool.sh
mkdir -p ~/.config/systemd/user
install -o eddy -g eddy -m 644 deployment/solo-tool.service ~/.config/systemd/user
@@ -36,4 +39,4 @@ uninstall:
rm ~/.config/systemd/user/solo-tool.service
systemctl --user daemon-reload
-.PHONY: all test clean web-deploy web-dev install uninstall
+.PHONY: all test clean web-deploy web-dev cli install uninstall