Skip to content

Commit 5067be0

Browse files
dluofacebook-github-bot
authored andcommitted
Update README to include additional installation instructions
Summary: When I was setting up the github workflow, I remembered that there's a couple additional installation steps that's needed for someone with a fresh machine - installing wasm-pack - using rust nightly Adding these steps to the README Reviewed By: rchen152 Differential Revision: D70748541 fbshipit-source-id: 85500aa2f909c038373e784e93138de4be2fb33d
1 parent 6a820d5 commit 5067be0

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

website/README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,17 @@ static website generator.
66
## Local Development
77

88
IMPORTANT: If you want to test any sandbox functionalities, you should be
9-
developing on your local machine. This is because we rely on cargo, which can
10-
only be built locally right now.
9+
developing on your local machine. This is because the sandbox relies on cargo,
10+
which can only be built locally right now. For Meta engineers who are not
11+
working on the sandbox, you can build on your dev machine using the following
12+
instructions.
1113

1214
Install dependencies:
1315

1416
```bash
15-
$ yarn install
17+
$ yarn install # yarn dependencies
18+
$ cargo install wasm-pack # wasm-pack for wasm build
19+
$ rustup install nightly && rustup default nightly # the wasm build must be done on the rust nightly build
1620
```
1721

1822
Start a local development server:

0 commit comments

Comments
 (0)