28 lines
469 B
Bash
Executable file
28 lines
469 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
# 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
|
|
|
|
# Build frontend
|
|
pushd frontend
|
|
$BUN_CMD run build
|
|
|
|
# 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 -o notes-app
|