mirror of
https://github.com/zen-browser/docs.git
synced 2025-07-07 17:05:34 +02:00
Merge pull request #64 from Richard-Woessner/LocalRun
Update contribute/desktop.md with instructions for running the browser locally
This commit is contained in:
commit
5282e9674a
1 changed files with 41 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue