mirror of
https://gitea.com/gitea/gitea-mcp.git
synced 2026-08-26 18:17:44 +00:00
e2052d903f
This PR contains the following updates: | Package | Type | Update | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---|---|---| | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) ([changelog](https://github.com/docker/setup-buildx-action/compare/bb05f3f5519dd87d3ba754cc423b652a5edd6d2c..37fe631027851001ddb9b187196cc803df7f5f0e)) | action | digest | `bb05f3f` → `37fe631` | | | | [go](https://go.dev/) ([source](https://github.com/golang/go)) | toolchain | minor | `1.26.6` → `1.27.0` |  |  | | golang.org/x/vuln | | minor | `v1.6.0` → `v1.7.0` |  |  | --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - Between 12:00 AM and 03:59 AM, only on Monday (`* 0-3 * * 1`) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTEuMiIsInVwZGF0ZWRJblZlciI6IjQzLjE5MS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> --------- Co-authored-by: silverwind <me@silverwind.io> Reviewed-on: https://gitea.com/gitea/gitea-mcp/pulls/243 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Renovate Bot <renovate-bot@gitea.com>
64 lines
1.3 KiB
Markdown
64 lines
1.3 KiB
Markdown
# Building gitea-mcp on Windows
|
|
|
|
This project includes PowerShell and batch scripts to build the gitea-mcp application on Windows systems.
|
|
|
|
## Prerequisites
|
|
|
|
- Go 1.27 or later
|
|
- Git (for version information)
|
|
- PowerShell 5.1 or later (included with Windows 10/11)
|
|
|
|
## Build Scripts
|
|
|
|
### PowerShell Script (`build.ps1`)
|
|
|
|
The main build script that replicates all Makefile functionality:
|
|
|
|
```powershell
|
|
# Show help
|
|
.\build.ps1 help
|
|
|
|
# Build the application
|
|
.\build.ps1 build
|
|
|
|
# Install the application
|
|
.\build.ps1 install
|
|
|
|
# Clean build artifacts
|
|
.\build.ps1 clean
|
|
|
|
# Run in development mode (hot reload)
|
|
.\build.ps1 dev
|
|
|
|
# Update vendor dependencies
|
|
.\build.ps1 vendor
|
|
```
|
|
|
|
### Batch File Wrapper (`build.bat`)
|
|
|
|
A simple wrapper to run the PowerShell script:
|
|
|
|
```cmd
|
|
# Run with default help target
|
|
build.bat
|
|
|
|
# Run specific target
|
|
build.bat build
|
|
build.bat install
|
|
```
|
|
|
|
## Available Targets
|
|
|
|
- **help** - Print help message
|
|
- **build** - Build the application executable
|
|
- **install** - Build and install to GOPATH/bin
|
|
- **uninstall** - Remove executable from GOPATH/bin
|
|
- **clean** - Remove build artifacts
|
|
- **air** - Install air for hot reload development
|
|
- **dev** - Run with hot reload development
|
|
- **vendor** - Tidy and verify Go module dependencies
|
|
|
|
## Output
|
|
|
|
The build process creates `gitea-mcp.exe` in the project directory.
|