2025-02-17 14:33:55 +01:00
|
|
|
#!/bin/bash
|
2025-02-21 13:42:23 +01:00
|
|
|
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
|
2025-02-21 13:42:23 +01:00
|
|
|
cd frontend
|
|
|
|
bun install
|
2025-02-17 14:33:55 +01:00
|
|
|
bun run build
|
2025-02-21 13:42:23 +01:00
|
|
|
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
|
2025-02-21 13:42:23 +01:00
|
|
|
go build $GO_FLAGS -o notes-app
|