move build step in README outside of usage

This commit is contained in:
Baipyrus 2024-09-03 13:46:45 +02:00 committed by GitHub
parent 6a47c15e2b
commit b640c4cb66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -60,15 +60,6 @@ next:
go run . save go run . save
``` ```
## Building
1. Clone the repository as seen above in [Usage](#usage)
2. Run the following command:
```powershell
GOOS=windows GOARCH=amd64 go build -o build/ -v ./...
```
### Configuration ### Configuration
The programs for which the proxy settings should be managed are stored in a `configs.json` The programs for which the proxy settings should be managed are stored in a `configs.json`
@ -125,3 +116,12 @@ Right-click the system tray icon to:
- **Disable Proxy**: Disable all saved proxies including system proxy. - **Disable Proxy**: Disable all saved proxies including system proxy.
- **Save New Config**: Open a prompt to save a new proxy configuration. - **Save New Config**: Open a prompt to save a new proxy configuration.
- **Exit**: Close the application. - **Exit**: Close the application.
## Building
1. Clone the repository as seen above in [Usage](#usage)
2. Run the following command:
```powershell
GOOS=windows GOARCH=amd64 go build -o build/ -v ./...
```