First Run
Verify the build
Section titled “Verify the build”cargo build --release./target/release/idep --versionExpect: idep 0.0.2.
Verify your config
Section titled “Verify your config”cat ~/.config/idep/config.tomlConfirm backend, model, and any endpoint/api_key are set. See Backends.
Optional: Ollama check
Section titled “Optional: Ollama check”In a second terminal:
ollama serveThen trigger a completion from the IDE/LSP client. Expected: tokens stream until stop-sequence; debounce honored (300ms default); stops at function boundary.
Run the test suite
Section titled “Run the test suite”cargo test --allBackend unit tests run against mock servers — no live API key or running Ollama required.