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
This commit is contained in:
2026-01-16 14:11:12 +01:00
parent 907dc48f1b
commit 4590baa521

View File

@@ -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
```