quicknotes/build.sh

25 lines
422 B
Bash
Raw Normal View History

2025-02-17 14:33:55 +01:00
#!/bin/bash
set -euo pipefail
# Check if we're in production mode
PROD_MODE=${NODE_ENV:-development}
GO_FLAGS=""
if [ "$PROD_MODE" = "production" ]; then
echo "Building in production mode..."
GO_FLAGS="-ldflags=-s -w"
fi
2025-02-17 14:33:55 +01:00
# Build frontend
cd frontend
bun install
2025-02-17 14:33:55 +01:00
bun run build
cd ..
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
go build $GO_FLAGS -o notes-app