README.md 691 Bytes
Newer Older
1 2 3 4
spring-boot-admin-server-ui
================================

### Building this module
5
The jar **can be build with Maven** with the maven-exec-plugin. To do this node.js and npm must be installed on your machine and be on your $PATH.
6 7 8 9 10
If you dont want to use the maven exec run the following commands:

### Build
```shell
npm install
11
npm run build
12 13
```

14
Repeated build with watching the files:
15
```shell
16
npm run watch:js
17 18
```

19 20
### Run dev-server
This starts a dev-server serving the ui only at port 9000. The rest requests are forwarded to port 8080.
21
```shell
22
npm run dev-server
23 24
```

25
## Run tests
26
```shell
27
npm run test
28
```
29 30 31 32 33

Repeated tests with watching the files:
```shell
npm run watch:test
```