Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(docs): remove leading dollar sign #63

Merged
merged 1 commit into from Jun 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -15,14 +15,14 @@ Source code of reactphp.org.
repository data and using the access token ensures that you don't run into
API rate limits.

2. Install dependencies with `$ composer install`.
2. Install dependencies with `composer install`.

## Build

Once set up, you can build the website by executing this:

```bash
$ bin/build
bin/build
```

This script will fetch all project repositories and then rebuild the entire website.
Expand All @@ -32,14 +32,14 @@ If you're working on the website source code, you may want to skip fetching all
components on every build like this:

```bash
$ bin/build --no-component-update
bin/build --no-component-update
```

If you're working on the website CSS or Javascript code, you will have to
rebuild the static assets like this:

```bash
$ npm run-script build
npm run-script build
```

> Note that compiled assets are expected to change much less frequently and are
Expand All @@ -58,7 +58,7 @@ contents of the `tmp/build` directory to the repository hosted in
This deployment can be started by executing this:

```bash
$ bin/build --deploy
bin/build --deploy
```

Note that this will publish any changes you've made to your local repository,
Expand Down