Skip to content

extent-framework/klov

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 

Repository files navigation

Klov - report server for ExtentReports 5 Join the chat at https://gitter.im/anshooarora/klov

Demo

Docker Hub

Klov is hosted at Docker Hub under anshooarora/klov.

Installation

  1. Install Docker (Docker Desktop or Engine, Compose)
  2. Download the docker-compose.yml from this repository or:
$ curl https://raw.githubusercontent.com/extent-framework/klov-server/master/docker-compose.yml -o docker-compose.yml
  1. Update the MongoDB connection details and the port where Klov is to be hosted at
  2. Start Klov
docker-compose up
  1. Open Klov at the $PORT you specified in docker-compose.yml or default:80

Docker-compose.yml

version: '2'
services:
    klov:
        image: anshooarora/klov:1.0.1
        container_name: klov
        environment:
            - SPRING_DATA_MONGODB_URI=mongodb://{host}:{port}
        ports:
            - 80:80