From 1d1bcc22f62aac93184d07e2f10d59dfede4f336 Mon Sep 17 00:00:00 2001 From: Shubhrajit Sadhukhan Date: Wed, 22 May 2024 12:36:16 +0530 Subject: [PATCH] Update README.md For running locally in Windows, I needed to install cross-env and make some changes to package.json file. This should be mentioned in the readme. --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index b172e5b3..b5d25cec 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,17 @@ Install dependencies with `npm install` before running the following scripts. To develop with external services you will additionally need to signup for your own API keys and enter them into your `.env` file. Get started by copying the example provided `cp .env.example .env`. +For Windows install cross-env and modify your package.json: + +`npm install cross-env --save-dev` + +``` +"scripts": { + "dev": "npm run dev:web", + "dev:web": "cross-env BUILD_TARGET=web webpack serve" +} +``` + ## Translations Checkout the guide to [adding translations](TRANSLATING.md).