1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/README.md

28 lines
476 B
Markdown
Raw Normal View History

2022-03-01 10:56:38 +01:00
# unleash-frontend
## Run with a local instance of the unleash-api:
You need to first start the unleash-api on port 4242
before you can start working on unleash-frontend.
2016-11-10 14:50:04 +01:00
Start webpack-dev-server with hot-reload:
2016-11-10 14:26:24 +01:00
```bash
2019-06-07 11:48:57 +02:00
cd ~/unleash-frontend
2021-10-08 22:20:47 +02:00
yarn install
yarn run start
2016-11-10 14:26:24 +01:00
```
## Run with a heroku-hosted unleash-api:
```bash
2019-06-07 11:48:57 +02:00
cd ~/unleash-frontend
2021-10-08 22:20:47 +02:00
yarn install
yarn run start:heroku
```
2019-10-05 09:55:08 +02:00
## UI Framework
2021-04-09 13:29:39 +02:00
We are using [material-ui](http://material-ui.com/).
2019-10-05 09:55:08 +02:00
2016-11-10 14:26:24 +01:00
Happy coding!