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

Update quickstart.md, added new 4th step making it 5 step documentation #2641

Closed
wants to merge 6 commits into from
Closed
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion documentation/frontend/guides/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,19 @@ you need to run this.
$ just node-install
```

4. To bring up the frontend, we have another `just` recipe. We have `just`
4. If you encounter errors after this, you may need to compile just the Openverse ESLint plugin.

```console
$ pnpm --filter='@openverse/eslint-plugin' build
```

Or

```console
$ pnpm -F '@openverse/eslint-plugin' build
```
Comment on lines +47 to +51
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems an unnecessary repetition of the previous command. We could omit this.


5. To bring up the frontend, we have another `just` recipe. We have `just`
recipes for almost everything.

```console
Expand Down
Loading