From df8bbdb2c8470e93f6797ef066bebd3a40c33891 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra <1884376+raisedadead@users.noreply.github.com> Date: Fri, 31 Jul 2020 13:30:26 +0530 Subject: [PATCH] docs: update devops steps (#39342) --- docs/flight-manuals/working-on-virtual-machines.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/flight-manuals/working-on-virtual-machines.md b/docs/flight-manuals/working-on-virtual-machines.md index 1660d901e1..17a50c752f 100644 --- a/docs/flight-manuals/working-on-virtual-machines.md +++ b/docs/flight-manuals/working-on-virtual-machines.md @@ -297,23 +297,26 @@ Provisioning VMs with the Code ```console git clone https://github.com/freeCodeCamp/freeCodeCamp.git cd freeCodeCamp + git checkout production-current # or any other branch to be deployed ``` 4. Create the `.env` from the secure credentials storage. -5. Install dependencies +5. Create the `google-credentials.json` from the secure credentials storage. + +6. Install dependencies ```console npm ci ``` -6. Build the server +7. Build the server ```console npm run ensure-env && npm run build:server ``` -7. Start Instances +8. Start Instances ```console cd api-server