From c50218f709d2c0cbf6d8c8a0e33f33d4c996e5e4 Mon Sep 17 00:00:00 2001 From: aNOOBis <69043738+aNOOBisTheGod@users.noreply.github.com> Date: Sat, 7 May 2022 04:24:58 -0700 Subject: [PATCH] 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 --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9354f910f..9d8f616f7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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 Ctrl+C to kill it.