From 4f1c8996b9ea86602d8c0256f34788bffb43e36a Mon Sep 17 00:00:00 2001 From: s3bc40 Date: Fri, 24 Apr 2026 23:03:18 +0200 Subject: [PATCH 1/2] fix: add missing type field in .mcp.json --- .mcp.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.mcp.json b/.mcp.json index 20c936cf..c5ec3d64 100644 --- a/.mcp.json +++ b/.mcp.json @@ -1,6 +1,7 @@ { "mcpServers": { "CodSpeed": { + "type": "http", "url": "https://mcp.codspeed.io/mcp" } } From e427fb84de6a39ab400b7d43e687e08f7f57c716 Mon Sep 17 00:00:00 2001 From: s3bc40 Date: Fri, 24 Apr 2026 23:03:25 +0200 Subject: [PATCH 2/2] docs: add getting started section to CONTRIBUTING.md --- CONTRIBUTING.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e5c89155..6dca07aa 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,5 +1,22 @@ # Contributing to CodSpeed Runner +## Getting Started + +### Prerequisites + +- [Rust](https://rustup.rs/) +- [Git LFS](https://github.com/git-lfs/git-lfs/blob/main/INSTALLING.md) (required for test fixtures) + +### Setup + +After cloning the repository, initialize the submodules and fetch the test fixtures: + +```bash +git submodule update --init --recursive +git lfs install +git lfs pull +``` + ## Release Process This repository is a Cargo workspace containing multiple crates. The release process differs depending on which crate you're releasing.