From c02abc8271920530b17f4e145b00ad229d9f16e4 Mon Sep 17 00:00:00 2001 From: Luiz Guilherme Fonseca Rosa Date: Thu, 20 Feb 2020 17:58:38 -0300 Subject: [PATCH] Include documentation about start command (#971) I've got stuck for some minutes before I could run the hot reload server locally. That's because the docs actually include instructions about the build but not the local development server. Had to look `package.json` to figure it out. - Include `yarn start` to local development instructions - Use `yarn install` instead of `yarn` just to make the intentions explicit --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dbf1940b..281a1a11 100755 --- a/README.md +++ b/README.md @@ -56,7 +56,8 @@ I do most development by starting the demo site in dev mode and iterating that w # Clone the repo cd webamp # __Note:__ Please use yarn over npm, since yarn will respect our `yarn.lock` file - yarn + yarn install + yarn start `http://localhost:8080/` should automatically open in your browser.