From 809fa2bcc1ae212c164e3f3c34dce5d7b9c221ed Mon Sep 17 00:00:00 2001 From: Kevin Papst Date: Sun, 8 May 2022 15:11:09 +0200 Subject: [PATCH] improve "run it locally" docs for first time contributors (#1109) --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2266deb3a..f55b282ef 100644 --- a/README.md +++ b/README.md @@ -84,9 +84,14 @@ Once you complete the setup, you'll be able to run the various commands provided ## Build locally -1. From the root `/tabler` directory, run `npm run start` in the command line. -2. Open [http://localhost:3000](http://localhost:3000) in your browser, and voilĂ . -3. Any change in the `/src` directory will build the application and refresh the page. +You need to have `npm` and `bundler` installed. + +1. From the root `/tabler` directory, run installation in the command line: + - `npm install` + - `bundler install` +2. Then execute `npm run start-plugins` to start up the application stack. +3. Open [http://localhost:3000](http://localhost:3000) in your browser, and voilĂ . +4. Any change in the `/src` directory will build the application and refresh the page. **Note**: Run `npm run build` for reforms a one off build application without refresh.