diff options
| author | diogo464 <[email protected]> | 2025-06-29 15:11:17 +0100 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2025-06-29 15:11:17 +0100 |
| commit | 5f81d08687494277ffe5f72b86d1c1b3c9341d9a (patch) | |
| tree | 1e3fa417e10416287a98c7583b37b311b40e6cd7 /Justfile | |
| parent | bb76625240ba60a1fc0d80d80ae0aefd56c66682 (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-- | Justfile | 8 |
1 files changed, 2 insertions, 6 deletions
| @@ -11,10 +11,6 @@ build: | |||
| 11 | push: build | 11 | push: build |
| 12 | docker push {{IMAGE_TAG}} | 12 | docker push {{IMAGE_TAG}} |
| 13 | 13 | ||
| 14 | cluster: | ||
| 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 | |||
| 18 | python *args: | 14 | python *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}} |
