quicknotes/build.sh
Nicola Zangrandi b6a8c39dc1
Some checks failed
Release Build / test-and-build (push) Failing after 1m8s
ci(infra): Added Forgejo Actions release workflow
2025-02-21 13:42:23 +01:00

24 lines
422 B
Bash
Executable file

#!/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
# Build frontend
cd frontend
bun install
bun run build
cd ..
# Copy static assets
mkdir -p build/css
cp static/css/bulma.min.css build/css/
# Build backend
go build $GO_FLAGS -o notes-app