From f3df58f75032dd460d7898f6879c9409f05151a7 Mon Sep 17 00:00:00 2001 From: akshay Date: Mon, 22 Sep 2025 15:15:05 +0530 Subject: [PATCH] update readme to add frontend build instructions (#793) --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b948d137..e06a6363 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,16 @@ pnpm i pnpm run dev ``` -This will start the frontend and backend with live reloading. A blank DB will be copied from the `dev_assets_seed` folder. +This will start the backend. A blank DB will be copied from the `dev_assets_seed` folder. + +### Building the frontend + +To build just the frontend: + +```bash +cd frontend +pnpm build +``` ### Build from source