https://github.com/application-research/shuttle-proxy-v2
A better shuttle proxy
https://github.com/application-research/shuttle-proxy-v2
Last synced: 11 months ago
JSON representation
A better shuttle proxy
- Host: GitHub
- URL: https://github.com/application-research/shuttle-proxy-v2
- Owner: application-research
- Created: 2022-12-06T14:58:38.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-27T16:06:28.000Z (over 3 years ago)
- Last Synced: 2025-06-03T03:08:56.009Z (about 1 year ago)
- Language: Go
- Homepage: https://upload.estuary.tech
- Size: 70.3 KB
- Stars: 0
- Watchers: 6
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Estuary Shuttle Proxy V2
A smarter proxy for Estuary shuttles.
It does a roundrobin check of the shuttles and retries the request on other shuttles if the chosen is down.
## Installation
```
go mod tidy
go mod download
```
## Env (create a `.env` file)
```
LISTEN_ADDR=0.0.0.0:8081
DB_NAME=
DB_HOST=
DB_USER=
DB_PASS=
DB_PORT=
```
## Setup
```
go build -tags netgo -ldflags '-s -w' -o shuttle-proxy
./shuttle-proxy
```