trepa/scripts/build.sh
2025-02-20 12:09:38 +00:00

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