diff options
| author | Jan Cizmar <cizmar@chlupac.com> | 2024-05-06 09:28:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-06 09:28:08 +0200 |
| commit | 2c8462b207d160ac5e1f37b65263b1ddef205c42 (patch) | |
| tree | de480a2d74d058c3f3b806a96c649f668a19a52b | |
| parent | d5708bd341d6f75cfe1b73b4b447362489cb454e (diff) | |
docs(setting-up): add missing `npm install` command (#9906)
| -rw-r--r-- | docs/development/setting-up.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/development/setting-up.md b/docs/development/setting-up.md index a569998f..fee89d47 100644 --- a/docs/development/setting-up.md +++ b/docs/development/setting-up.md @@ -11,9 +11,10 @@ Swagger UI includes a development server that provides hot module reloading and 1. `git clone https://github.com/swagger-api/swagger-ui.git` 2. `cd swagger-ui` -3. `npm run dev` -4. Wait a bit -5. Open http://localhost:3200/ +3. `npm install` +4. `npm run dev` +5. Wait a bit +6. Open http://localhost:3200/ ### Using your own local api definition with local dev build |
