2017-12-10 02:08:27 +08:00
# project-tron
2018-04-09 01:59:36 +08:00
Publicly hosted on IBM Cloud here: [http://libertybikes.mybluemix.net/ ](http://libertybikes.mybluemix.net/ )
2017-12-16 04:35:48 +08:00
2018-04-09 01:59:36 +08:00
Bluemix toolchain automatically deploys the current `liberty-bikes/liberty-bikes:master` branch
2017-12-16 04:35:48 +08:00
2017-12-16 10:34:28 +08:00
## Local development
2018-02-16 08:52:47 +08:00
Builds all microservice applications and deploys them to locally running liberty servers, then opens the UI.
2017-12-16 10:34:28 +08:00
```
2018-02-16 08:52:47 +08:00
./gradlew start frontend:open
2017-12-16 04:35:48 +08:00
```
2017-12-16 10:34:28 +08:00
Any code changes that are made in an eclipse environment with auto-build enabled will automatically publish content to the loose application, meaning no server restarts should be required between code changes.
2018-02-16 08:52:47 +08:00
To stop all liberty servers, issue the command:
2017-12-16 04:35:48 +08:00
```
2018-02-16 08:52:47 +08:00
./gradlew stop
2017-12-16 04:35:48 +08:00
```
(Note that `libertyRun` and `libertyStart` commands will first invoke `libertyStop` )
Originally cloned from https://github.com/aguibert/coms319-project4