mirror of
https://github.com/kemko/reproxy.git
synced 2026-01-07 18:55:50 +03:00
14 lines
335 B
Makefile
14 lines
335 B
Makefile
run: install
|
|
whoami -port 8081 -name=svc1 &
|
|
whoami -port 8082 -name=svc2 &
|
|
whoami -port 8083 -name=svc3 &
|
|
../../dist/reproxy --file.enabled --file.name=reproxy.yml
|
|
pkill -9 whoami
|
|
|
|
kill:
|
|
pkill -9 whoami
|
|
|
|
install:
|
|
cd ../../app && CGO_ENABLED=0 go build -o ../dist/reproxy
|
|
cd /tmp && go install github.com/traefik/whoami@latest
|