From c69515e46b752570047d826265280f613221b00a Mon Sep 17 00:00:00 2001 From: aNOOBis <69043738+aNOOBisTheGod@users.noreply.github.com> Date: Sun, 12 Jun 2022 08:56:40 -0700 Subject: [PATCH] Contributing typos fix (#3114) * spacebar in presets and tags addition * super mega spacebar remake * style fix * final name removal in ui * replaceAll in ape removal * using display above account chart * create preset in command line addition * testing removal * one more testing removal * create tag command line addition * Update commandline-lists.ts * moved add commands to the bottom hiding if user is not signed in * refactor * hiding tags and presets when signed out * fixed presets and tags display in alerts * russian_25k and russian_50k addition * russian 375k addition * lil fix * fixed windows auto-reload error * Revert "fixed windows auto-reload error" This reverts commit ea226212322db148a9d7923ca1717cb9818161a4. * Revert "Revert "fixed windows auto-reload error"" This reverts commit 669cec42171e755623fa71bde1a3daf6f91537c6. * Revert "Revert "Revert "fixed windows auto-reload error""" This reverts commit d90352633cd3d431505a2b1f02e864e8dc773e14. * themes popup small fix * using && * some typos fixed Co-authored-by: Miodec Co-authored-by: Vasiliy Novozhilov --- CONTRIBUTING_ADVANCED.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING_ADVANCED.md b/CONTRIBUTING_ADVANCED.md index 72c99369d..5062bddc2 100644 --- a/CONTRIBUTING_ADVANCED.md +++ b/CONTRIBUTING_ADVANCED.md @@ -70,7 +70,7 @@ Alternatively, if you use `nvm` then you can run `nvm install` and `nvm use` (yo - In your Firebase console, go to Project Settings > Service Accounts - Click "Generate New Private Key" - - Save as `serviceAccountKey.json` inside the `backend/credentials/` directory. + - Save as `serviceAccountKey.json` inside the `backend/src/credentials/` directory. #### Docker (Recommended but Optional) @@ -79,6 +79,7 @@ You can use docker to run the frontend development environment. This will take c ```bash cd frontend && docker-compose up ``` + Once wepback has compiled, the frontend will be served on [port 3000](http://localhost:3000) #### Backend (optional) @@ -100,7 +101,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 3000](http://localhost:3000). 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.