Skip to content

Commit d9a5e59

Browse files
authored
docs: fix dev guide info (#1631)
FIXES: #1629
1 parent c65010b commit d9a5e59

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

README.md

+17-3
Original file line numberDiff line numberDiff line change
@@ -153,13 +153,26 @@ UI5 Web Components support different calendar types (Gregorian, Islamic, Japanes
153153
- [Yarn](https://yarnpkg.com/en)
154154
- [Node.js](https://nodejs.org/) (**version 8.5 or higher**)
155155

156-
You can clone the UI5 Web Components repository and start the Playground app with the following commands:
156+
You can explore components test pages on http://localhost:8080/test-resources/pages/ for the `main` package
157+
and http://localhost:8081/test-resources/pages/ for the `fiori` package.
157158

158159
```sh
159160
yarn # to install all dependencies
160161
yarn start # to serve the project
161162
```
162-
This will open the Playground page in the browser!
163+
164+
You can start the Playground app with the following commands:
165+
166+
```sh
167+
# install palyground specific dependencies (one time only)
168+
cd packages/playground
169+
yarn install:dependencies
170+
171+
# start the playground from the project root
172+
yarn start:playground
173+
174+
# open http://localhost:4000/
175+
```
163176

164177
## Production Build
165178
To build the UI5 Web Components, just run the following commands:
@@ -169,7 +182,8 @@ yarn # to install all dependecies
169182
yarn build # to build the project
170183
```
171184

172-
Afterwards, you can find the static **UI5 Web Components - Playground** in the `dist` folder of the playground.
185+
Afterwards, you can find the static **UI5 Web Components** in the `dist` folder of the corresponding package folder.
186+
For example, to find the Button component (that belongs to the `main` package), look inside the `packages/main/dist` folder.
173187

174188
## FAQ
175189
### What's the thing with Yarn?

0 commit comments

Comments
 (0)