From 65d64ec809d18639c02e1b12d3417032db3885d7 Mon Sep 17 00:00:00 2001 From: Mustansir-06 Date: Mon, 8 Dec 2025 13:40:14 +0000 Subject: [PATCH] Docs: Add local run instructions to frontend README --- frontend/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/frontend/README.md b/frontend/README.md index 28806e1..5446d73 100644 --- a/frontend/README.md +++ b/frontend/README.md @@ -8,6 +8,19 @@ This is a minimal, proof-of-concept frontend application for OpenRx, built with - A simple local web server (e.g., Python's `http.server`, Node's `serve`, or a browser extension). - The OpenRx backend must be running on `http://localhost:8000` (or the port you configure). +## 🚀 Running Locally (Node Development Server) + +For typical development using Node.js tools: + +1. Install the required dependencies: + ```bash + npm install + ``` +2. Start the development server: + ```bash + npm start + ``` + ### Running the Frontend 1. Ensure the backend is running (see `backend/README.md`). 2. Navigate to the `frontend/` directory.