Skip to content

Commit

Permalink
Merge pull request #64 from Richard-Woessner/LocalRun
Browse files Browse the repository at this point in the history
Update contribute/desktop.md with instructions for running the browser locally
  • Loading branch information
NOCanoa authored Oct 16, 2024
2 parents 94038f7 + b4ff906 commit 5282e96
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions content/contribute/desktop.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,47 @@ Before you begin, ensure you have the following tools installed:
- [**Node.js**](https://nodejs.org/): Required for building the browser.
- [**npm**](https://www.npmjs.com/): Node package manager, which comes with Node.js.


## Run Locally

Clone the project

```bash
git clone https://github.com/zen-browser/desktop.git --recurse-submodules
cd desktop
```

Install dependencies

```bash
npm i
```

Download and bootstrap the browser

```
npm run init
```

Copy a language pack
```
sh scripts/update-en-US-packs.sh
```

Start building the browser

```
npm run build
```

Finally, run the browser!

```
npm start
```



## Making a Contribution

#### 1. Fork the Repository
Expand Down

0 comments on commit 5282e96

Please sign in to comment.