mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
0d3b7fe472
Summary: Consolidate tips on CONTRIBUTING.md, and reduce the wall of text when opening a new issue. Hoping this will encourage more people to read through the text. Closes https://github.com/facebook/react-native/pull/14518 Differential Revision: D5250443 Pulled By: hramos fbshipit-source-id: 91213c4ceca12225d9f54d1e1e81e020c6e463b3
32 lines
728 B
Markdown
32 lines
728 B
Markdown
# Install prerequisites
|
|
|
|
Before running the website, make sure you've run the following:
|
|
|
|
```sh
|
|
git clone https://github.com/facebook/react-native.git
|
|
cd react-native
|
|
npm install
|
|
```
|
|
|
|
# Run the website server
|
|
|
|
The first time, get all the website dependencies loaded via
|
|
|
|
```sh
|
|
cd website
|
|
npm install
|
|
```
|
|
|
|
Then, run the server via
|
|
|
|
```sh
|
|
npm start
|
|
open http://localhost:8079/react-native/index.html
|
|
```
|
|
|
|
Anytime you change the contents, just refresh the page and it's going to be updated.
|
|
|
|
# Publish the website
|
|
|
|
The website at https://facebook.github.io/react-native is automatically deployed by our continuous integration infrastructure, specifically CircleCI. This is configured in `circle.yml` in the root of the repository.
|