# klov **Repository Path**: mirrors_andyglick/klov ## Basic Information - **Project Name**: klov - **Description**: Report server for Extent API. Demo: http://klov.herokuapp.com - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-02-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## klov. Report server for the ExtentReports API. * Klov replaces ExtentX. [![Join the chat at https://gitter.im/anshooarora/klov](https://badges.gitter.im/anshooarora/klov.svg)](https://gitter.im/anshooarora/klov?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/ee786f7b7f7f4947b4953398428efa18)](https://www.codacy.com/app/anshooarora/klov?utm_source=github.com&utm_medium=referral&utm_content=anshooarora/klov&utm_campaign=Badge_Grade) #### Demo 0.1.0: [klov.herokuapp.com](http://klov.herokuapp.com) ### Download Download latest copy from [extentreports.com](http://extentreports.com/community/) ### Klov Installation 1. Install MongoDB 3.2 (other versions may not work correctly) (skip if you have this already) 2. Install Redis-Server (skip if you do not plan to use Redis, see section "Using Klov Without Redis") 3. Run Klov: ```java java -jar klov-0.1.0.jar ``` #### MongoDB Settings You can configure your MongoDB environment settings from `application.properties`: ```java # data.mongodb spring.data.mongodb.host=localhost spring.data.mongodb.port=27017 spring.data.mongodb.database=klov ``` #### Redis settings You can configure your Redis server settings from `application.properties`: ```java # 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 ``` #### Using Klov without Redis To use Klov without Redis, simply uncomment this line in `application.properties`: ``` spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.session.SessionAutoConfiguration ``` #### Default admin ``` user: root password: password ``` ### Setting up KlovReporter with ExtentReports API ```java KlovReporter klov = new KlovReporter(); // specify mongoDb connection klov.initMongoDbConnection("localhost", 27017); // specify project // ! you must specify a project, other a "Default project will be used" klov.setProjectName("Java"); // you must specify a reportName otherwise a default timestamp will be used klov.setReportName("AppBuild"); // URL of the KLOV server // you must specify the server URL to ensure all your runtime media is uploaded // to the server klov.setKlovUrl("http://localhost"); // finally, attach the reporter: extent.attachReporter(klov); ```