12 lines
No EOL
251 B
Bash
12 lines
No EOL
251 B
Bash
#!/bin/bash
|
|
|
|
#Optimize build size
|
|
export CGO_ENABLED=0
|
|
export GOOS=linux
|
|
export GOARCH=amd64
|
|
|
|
#Build the API
|
|
go build -ldflags="-s -w" -o dist/api ./cmd/api/main.go
|
|
|
|
#Build the cron job
|
|
go build -ldflags="-s -w" -o dist/resync ./cmd/cron/resync.go |