1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00

improve "run it locally" docs for first time contributors (#1109)

This commit is contained in:
Kevin Papst
2022-05-08 15:11:09 +02:00
committed by GitHub
parent 7c08f5afa9
commit 809fa2bcc1

View File

@@ -84,9 +84,14 @@ Once you complete the setup, you'll be able to run the various commands provided
## Build locally ## Build locally
1. From the root `/tabler` directory, run `npm run start` in the command line. You need to have `npm` and `bundler` installed.
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. 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**: **Note**:
Run `npm run build` for reforms a one off build application without refresh. Run `npm run build` for reforms a one off build application without refresh.