Demo: klov.herokuapp.com
Reporting server for Extent API. * klov replaces ExtentX.
Download latest copy from extentreports.com
- Install MongoDB (skip if you have this already)
- Install Redis-Server (skip if you do not plan to use Redis, see section "Using Klov Without Redis")
- Run Klov:
java -jar klov-0.0.1.jar
To use Klov without Redis, simply uncomment this line in application.properties
:
spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.session.SessionAutoConfiguration
You can configure your MongoDB environment settings from application.properties
:
# data.mongodb
spring.data.mongodb.host=localhost
spring.data.mongodb.port=27017
spring.data.mongodb.database=klov
You can configure your Redis server settings from application.properties
:
# redis, session
spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.session.SessionAutoConfiguration
spring.session.store-type=redis
server.session.timeout=-1
spring.redis.host=localhost
spring.redis.port=6379
user: root
password: password