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:
@@ -273,6 +273,7 @@ Internet
|
|||||||
- HAProxy installed
|
- HAProxy installed
|
||||||
- Domain with DNS pointing to server
|
- Domain with DNS pointing to server
|
||||||
|
|
||||||
|
|
||||||
### Step 1: Build the Application
|
### Step 1: Build the Application
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
@@ -283,6 +284,10 @@ cd award
|
|||||||
# Install dependencies
|
# Install dependencies
|
||||||
bun install
|
bun install
|
||||||
|
|
||||||
|
# Install frontend dependencies
|
||||||
|
cd src/frontend
|
||||||
|
bun install
|
||||||
|
|
||||||
# Build frontend (generates static files in src/frontend/build/)
|
# Build frontend (generates static files in src/frontend/build/)
|
||||||
bun run build
|
bun run build
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user