2021-10-05 11:09:29 -04:00
|
|
|
#!/usr/bin/env bash
|
2020-05-14 19:13:33 -04:00
|
|
|
|
2021-02-26 07:11:13 -05:00
|
|
|
PATH=$PATH:~/go/bin
|
2021-10-05 11:09:29 -04:00
|
|
|
|
2021-02-26 07:11:13 -05:00
|
|
|
cd frontend && npm install && npm run build && cd ..
|
|
|
|
|
2022-09-05 04:48:34 -04:00
|
|
|
CGO_ENABLED=1 GOOS=linux GOARCH=${GOARCH:-amd64} go build -a -tags netgo -ldflags "-linkmode external -extldflags -static -s -w" $@
|
2021-02-26 07:11:13 -05:00
|
|
|
|