Commit 1ab4a7dd authored by ishandhanani's avatar ishandhanani Committed by GitHub
Browse files

docs(README): add local development instructions (#463)

parent 10682826
......@@ -113,3 +113,19 @@ curl localhost:8000/v1/chat/completions -H "Content-Type: application/json"
"max_tokens": 300
}' | jq
```
### Local Development
To develop locally, we recommend working inside of the container
```bash
./container/build.sh
./container/run.sh -it --mount-workspace
cargo build --release
mkdir -p /workspace/deploy/dynamo/sdk/src/dynamo/sdk/cli/bin
cp /workspace/target/release/http /workspace/deploy/dynamo/sdk/src/dynamo/sdk/cli/bin
cp /workspace/target/release/llmctl /workspace/deploy/dynamo/sdk/src/dynamo/sdk/cli/bin
uv pip install -e .
```
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment