Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions frontend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down