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

29 lines
664 B
Markdown
Raw Normal View History

2016-11-14 09:13:56 +01:00
[![Build Status](https://travis-ci.org/Unleash/unleash-frontend.svg?branch=master)](https://travis-ci.org/Unleash/unleash-frontend)
2016-11-10 14:50:04 +01:00
# Developing
2016-11-10 14:26:24 +01:00
### Run with together with local unleash-api:
2016-11-10 14:50:04 +01:00
You need to first start the unleash-api on port 4242
before you can start working on unleash-frontend.
2016-11-10 14:26:24 +01:00
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
npm install
2016-11-10 14:26:24 +01:00
npm run start
```
### Run with heroku hosted unleash-api:
```bash
2019-06-07 11:48:57 +02:00
cd ~/unleash-frontend
npm install
npm run start:heroku
```
2019-10-05 09:55:08 +02:00
## UI Framework
Currently using [react-mdl](https://tleunen.github.io/react-mdl/components/) which is a deprecated and closed project.
2016-11-10 14:26:24 +01:00
Happy coding!