From 4590baa521823c7eba403f6618842e785e95ff16 Mon Sep 17 00:00:00 2001 From: Joerg Date: Fri, 16 Jan 2026 14:11:12 +0100 Subject: [PATCH] docs: Add frontend dependency installation step to deployment guide When pulling updates from repository, remember to install frontend dependencies: cd src/frontend && bun install && bun run build --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 1da8f6b..8a36cd2 100644 --- a/README.md +++ b/README.md @@ -273,6 +273,7 @@ Internet - HAProxy installed - Domain with DNS pointing to server + ### Step 1: Build the Application ```bash @@ -283,6 +284,10 @@ cd award # Install dependencies bun install +# Install frontend dependencies +cd src/frontend +bun install + # Build frontend (generates static files in src/frontend/build/) bun run build ```