Skip to content

Commit 4d4aedb

Browse files
committed
v0.2 release
1 parent 921d7e9 commit 4d4aedb

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.travis.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,4 @@ jdk:
66
- openjdk8
77

88
script:
9-
- mvn package
10-
11-
after_success:
12-
- bash <(curl -s https://codecov.io/bash)
13-
- mvn clean test jacoco:report coveralls:report
9+
- mvn package

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Ngrok Spring Boot Starter
22
[![Travis build Status](https://img.shields.io/travis/kilmajster/ngrok-spring-boot-starter/master.svg?logo=travis)](https://travis-ci.org/kilmajster/ngrok-spring-boot-starter)
3-
[![Coverage Status](https://coveralls.io/repos/github/kilmajster/ngrok-spring-boot-starter/badge.svg)](https://coveralls.io/github/kilmajster/ngrok-spring-boot-starter)
43
![GitHub last commit](https://img.shields.io/github/last-commit/kilmajster/ngrok-spring-boot-starter.svg)
54
![maven-central version](https://img.shields.io/maven-central/v/io.github.kilmajster/ngrok-spring-boot-starter?color=1)
65
[![StackShare](https://img.shields.io/badge/tech-stack-0690fa.svg)](https://stackshare.io/createam-labs/ngrok-spring-boot-starter)
@@ -35,13 +34,13 @@ with the link, just like it's done below 👇
3534
<dependency>
3635
<groupId>io.github.kilmajster</groupId>
3736
<artifactId>ngrok-spring-boot-starter</artifactId>
38-
<version>0.1</version>
37+
<version>0.2</version>
3938
</dependency>
4039
```
4140

4241
- or gradle:
4342
```groovy
44-
compile('io.github.kilmajster:ngrok-spring-boot-starter:0.1')
43+
compile('io.github.kilmajster:ngrok-spring-boot-starter:0.2')
4544
````
4645
4746
### 🛠 Configuration
@@ -52,6 +51,12 @@ ngrok.enabled=true
5251

5352
###### Optional ```application.properties``` & descriptions
5453
```
54+
# to specify configuration file location, use following property:
55+
ngrok.config=/home/user/ngrok-config.yml
56+
57+
# for multiple config files, use semicolon ";" as delimiter, like below:
58+
ngrok.config=/home/user/ngrok-config.yml;/home/user/ngrok-config-secondary.yml
59+
5560
# if you've got already running Ngrok instance on non default port
5661
ngrok.api.url=http://localhost:4040
5762

0 commit comments

Comments
 (0)