add cli for server-side

This commit is contained in:
2026-06-24 19:39:49 +03:00
parent b41d8023b6
commit 7963a8d2eb
8 changed files with 592 additions and 4 deletions
+5 -2
View File
@@ -1,6 +1,6 @@
.PHONY: all client server test clean
.PHONY: all client server cli test clean
all: client server
all: client server cli
client:
pyinstaller --onefile src/nexus_sync/client/__main__.py --name nexus-sync-client
@@ -8,6 +8,9 @@ client:
server:
pyinstaller --onefile src/nexus_sync/server/__main__.py --name nexus-sync-server
cli:
pyinstaller --onefile src/nexus_sync/cli/__main__.py --name nexus-cli
test:
pytest