Update examples/README.md

Co-authored-by: mahula <lenzmath@posteo.de>
This commit is contained in:
Anton Tranelis 2025-03-21 19:49:30 +00:00 committed by GitHub
parent c44cb33176
commit 39a61a1fef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,25 @@
# Examples
Here is a collection of executable examples. Building on each other, they show the features available in the Utipia-ui library.
You can run them and try them out locally in the browser.
This examples depend on the `/dist` of the root project. You have to run `npm run build` in the root project before you can run the examples.
## Running the examples
These examples depend on the `/dist` of the root project. You have to run `npm run build` in the root project before you can run the examples:
Using the example [3 - Tags](./3-tags):
```sh
# in root directory install and build the library
npm install
npm run build
# change to specific example directory
cd ./examples/3-tags
# install and run the example code
npm install && npm run dev
# call up the running example in the browser at http://localhost:5173/
## Roadmap