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
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,20 @@ After a successful install, go to **Apps → Unknown Sources** on your headset a

## For offline usage

The web installer is built with **Vite**. To run it locally:
The web installer lives in `quest-web-installer/` and is built with **Vite**. From the repository root, run:

```bash
git clone https://github.com/FrizzleM/QuestLoad.git
cd QuestLoad
cd quest-web-installer
npm install
npm run dev
npm run build
npm run preview
npm run dev
```

To create a production build locally:

```bash
cd quest-web-installer
npm run build
npm run preview
```