Does as it says: one single command to launch a dev reverse proxy.
go run github.com/megakuul/oneshot@latest
[!TIP]
oneshot uses a simple regex router. Each route path segment consists of a regular expression with priority based on order. Most specific route always wins.
(e.g. / => https://myfrontend.com and /api => http://localhost:8000)
(e.g. / => http://localhost:5173 and /v1\..+ => https://mybackend.com)
(e.g. /app-v[1-9]+ => http://localhost:8000 and /app-.+ => https://myprodapp.com)