diff options
author | Eddy Pedroni <epedroni@pm.me> | 2025-07-17 15:31:43 +0200 |
---|---|---|
committer | Eddy Pedroni <epedroni@pm.me> | 2025-07-17 15:31:43 +0200 |
commit | 25b7a93d25e490c516b87ad4a57e27173d886b59 (patch) | |
tree | 70c94cac8998e70fc130700fb37fa03f43a691e2 /Makefile | |
parent | 8fdbcd3b98f5bf5479e2a67e40f5746b184908d3 (diff) |
Fix CLI
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |