aboutsummaryrefslogtreecommitdiff
path: root/Justfile
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-06-29 15:11:17 +0100
committerdiogo464 <[email protected]>2025-06-29 15:11:17 +0100
commit5f81d08687494277ffe5f72b86d1c1b3c9341d9a (patch)
tree1e3fa417e10416287a98c7583b37b311b40e6cd7 /Justfile
parentbb76625240ba60a1fc0d80d80ae0aefd56c66682 (diff)
Convert from Rust to Python project with uv support
Remove Rust-related files (Cargo.toml, Cargo.lock, src/, target/) and restructure as Python project using uv for dependency management. Update project structure to match nova-oar-mcp style with pyproject.toml, .python-version, and proper Python packaging conventions. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
Diffstat (limited to 'Justfile')
-rw-r--r--Justfile8
1 files changed, 2 insertions, 6 deletions
diff --git a/Justfile b/Justfile
index 1b3eb89..cf8827f 100644
--- a/Justfile
+++ b/Justfile
@@ -11,10 +11,6 @@ build:
11push: build 11push: build
12 docker push {{IMAGE_TAG}} 12 docker push {{IMAGE_TAG}}
13 13
14cluster:
15 RUSTFLAGS='-C link-arg=-s' cargo build --target x86_64-unknown-linux-musl --target-dir target/
16 scp target/x86_64-unknown-linux-musl/debug/oar-p2p cluster:./
17
18python *args: 14python *args:
19 scp oar-p2p.py cluster:./ 15 scp oar_p2p.py cluster:./
20 ssh cluster /home/diogo464/.local/bin/uv run python ./oar-p2p.py {{args}} 16 ssh cluster /home/diogo464/.local/bin/uv run python ./oar_p2p.py {{args}}