install-all fix (#2956)

you've changed install-windows, but I guess forgot to change install-all, because on my Mac, install:all doesn't work, and install-all works fine
This commit is contained in:
aNOOBis 2022-05-07 04:24:58 -07:00 committed by GitHub
parent ee5ef57d89
commit c50218f709
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -103,7 +103,7 @@ Follow these steps if you want to work on anything involving the database/accoun
Once you have completed the above steps, you are ready to build and run Monkeytype.
1. Run `npm run install:all` in the project root to install all dependencies.
1. Run `npm run install-all` in the project root to install all dependencies.
- If you are on Windows, use `npm run install-windows`.
- If neither works, you will have to run `npm install` in root, frontend, and backend directories.
2. Run `npm run dev` (`npm run dev-fe` if you skipped the mongo section) to start a local dev server on [port 5000](http://localhost:5000). It will watch for changes and rebuild when you edit files in `src/` or `public/` directories. Note that rebuilding doesn't happen instantaneously so be patient for changes to appear. Use <kbd>Ctrl+C</kbd> to kill it.