quicknotes/scripts/build.sh

31 lines
528 B
Bash
Raw Permalink Normal View History

2025-02-17 14:33:55 +01:00
#!/bin/bash
set -euo pipefail
2025-02-17 14:33:55 +01:00
# Find bun executable
if command -v bun >/dev/null 2>&1; then
BUN_CMD="bun"
else
BUN_CMD="$HOME/.bun/bin/bun"
fi
# Find go executable
if command -v go >/dev/null 2>&1; then
GO_CMD="go"
else
GO_CMD="/usr/local/go/bin/go"
fi
2025-02-17 14:33:55 +01:00
# Build frontend
pushd frontend
$BUN_CMD run build
2025-02-17 14:33:55 +01:00
# Copy static assets
mkdir -p build/css
cp static/css/bulma.min.css build/css/
# Build backend (without CGO)
popd
CGO_ENABLED=0 $GO_CMD build -v -o notes-app || {
echo "Go build failed!"
exit 1
}