From 849a5612fa78ad457ba2cdb342a35ec6ff745734 Mon Sep 17 00:00:00 2001 From: Pulkit Kathuria Date: Thu, 2 May 2024 13:16:22 +0900 Subject: [PATCH] (docs) README updated --- README.md | 45 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fa88a9f..dc22cf3 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,18 @@ coveritup app url

+

+ The Hassle-Free Code Coverage and Metrics Tracking Tool +
+ A CodeCov and SonarQube alternative. +
+
+ + DEMO! + +
+
+

@@ -11,7 +23,7 @@

- Action for uploading Code Metrics to coveritup.app + Action and Self Hosted app for uploading Code Metrics to coveritup.app

@@ -256,6 +268,37 @@ https://coveritup.app doesn't store the token. You can see usage in `action.yml` file +# Development notes + +```sh +# for backend +cd app/ +air # or go run main.go + +# for frontend +cd app/fronend +npm install +npm run dev +``` + + +# Self Hosting Options + +## Just the Api + +Download the binary from [releases](https://github.com/kevincobain2000/action-coveritup/releases) + +## Build from source (with UI) + +```sh +git clone https://github.com/kevincobain2000/action-coveritup +cd app +cp frontend/.env.example frontend/.env +./build.sh +./main +``` + # CHANGE LOG - **v1.0.0** - Initial release with `self hosted` and `action`. +- **v2.0.0** - Better action that wraps the command.