📊 A minimalist, self-hosted WakaTime-compatible backend for coding statistics
Go to file
Ferdinand Mütsch d12ccc4566 docs: update readme 2020-05-30 20:54:56 +02:00
.github Update FUNDING.yml 2020-05-23 21:02:12 +02:00
data Resolve #7. 2020-03-31 11:24:44 +02:00
middlewares feat: allow insecure cookies (resolve #27) 2020-05-30 12:11:25 +02:00
migrations refactor: refactor migrations and add fixtures 2020-05-30 20:41:27 +02:00
models refactor: refactor migrations and add fixtures 2020-05-30 20:41:27 +02:00
routes refactor: refactor migrations and add fixtures 2020-05-30 20:41:27 +02:00
scripts fix: fix build script to cross-compile with sqlite dependency 2020-04-26 14:35:53 +02:00
services refactor: refactor migrations and add fixtures 2020-05-30 20:41:27 +02:00
static/assets feat: display api key on user interface (resolve #24) 2020-05-24 21:19:05 +02:00
utils feat: allow insecure cookies (resolve #27) 2020-05-30 12:11:25 +02:00
views refactor: refactor migrations and add fixtures 2020-05-30 20:41:27 +02:00
.dockerignore fix: docker build 2020-04-26 15:07:00 +02:00
.env.example refactor: refactor migrations and add fixtures 2020-05-30 20:41:27 +02:00
.gitignore feat: add support for sqlite3 2020-04-19 16:58:54 -07:00
Dockerfile chore: update dockerfile 2020-05-30 12:27:10 +02:00
LICENSE Add license. 2019-05-22 07:32:35 +02:00
README.md docs: update readme 2020-05-30 20:54:56 +02:00
config.ini feat: allow insecure cookies (resolve #27) 2020-05-30 12:11:25 +02:00
doap.rdf Add DOAP description. 2020-04-05 13:36:01 +02:00
go.mod refactor: refactor migrations and add fixtures 2020-05-30 20:41:27 +02:00
go.sum refactor: refactor migrations and add fixtures 2020-05-30 20:41:27 +02:00
main.go refactor: refactor migrations and add fixtures 2020-05-30 20:41:27 +02:00
version.txt refactor: refactor migrations and add fixtures 2020-05-30 20:41:27 +02:00
wait-for-it.sh fix: docker build 2020-04-26 15:07:00 +02:00

README.md

📈 wakapi

Say thanks Go Report Card

Buy me a coffee


A minimalist, self-hosted WakaTime-compatible backend for coding statistics

Wakapi screenshot

If you like this project, please consider supporting it 🙂. You can donate either through buying me a coffee or becoming a GitHub sponor. Every little donation is highly appreciated and boosts the developers' motivation to keep improving Wakapi!

Demo

🔥 New: There is hosted demo version available now. Go check it out!

To use the demo version set api_url = https://apps.muetsch.io/wakapi/api/heartbeat. However, this hosted instance might be taken down again in the future, so you might potentially lose your data Please use responsibly ...

Prerequisites

On the server side:

  • Go >= 1.13 (with $GOPATH properly set)
  • gcc (to compile go-sqlite3)
    • Fedora / RHEL: dnf install @development-tools
    • Ubuntu / Debian: apt install build-essential
    • Windows: See here
  • Optional: A MySQL- or Postgres database

On your local machine:

Server Setup

Run from source

  1. Clone the project
  2. Copy .env.example to .env and set database credentials
  3. Adapt config.ini to your needs
  4. Build executable: GO111MODULE=on go build
  5. Run server: ./wakapi

Run with Docker

docker run -d -p 3000:3000 --name wakapi n1try/wakapi

By default, SQLite is used as a database. To run Wakapi in Docker with MySQL or Postgres, see Dockerfile and .env.example for further options.

Client Setup

Wakapi relies on the open-source WakaTime client tools. In order to collect statistics to Wakapi, you need to set them up.

  1. Set up WakaTime for your specific IDE or editor. Please refer to the respective plugin guide
  2. Make your local WakaTime client talk to Wakapi by editing your local ~/.wakatime.cfg file as follows
api_url = https://your.server:someport/api/heartbeat`
api_key = the_api_key_printed_to_the_console_after_starting_the_server`

You can view your API Key after logging in to the web interface.

Customization

Aliases

There is an option to add aliases for project names, editors, operating systems and languages. For instance, if you want to map two projects myapp-frontend and myapp-backend two a common project name myapp-web in your statistics, you can add project aliases.

At the moment, this can only be done via raw database queries. For the above example, you would need to add two aliases, like this:

INSERT INTO aliases (`type`, `user_id`, `key`, `value`) VALUES (0, 'your_username', 'myapp-web', 'myapp-frontend');

Types

  • Project ~ type 0
  • Language ~ type 1
  • Editor ~ type 2
  • OS ~ type 3

NOTE: In order for the aliases to take effect for non-live statistics, you would either have to wait 24 hours for the cache to be invalidated or restart Wakapi.

Best Practices

It is recommended to use wakapi behind a reverse proxy, like Caddy or nginx to enable TLS encryption (HTTPS). However, if you want to expose your wakapi instance to the public anyway, you need to set listen = 0.0.0.0 in config.ini

Important Note

This is not an alternative to using WakaTime. It is just a custom, non-commercial, self-hosted application to collect coding statistics using the already existing editor plugins provided by the WakaTime community. It was created for personal use only and with the purpose of keeping the sovereignity of your own data. However, if you like the official product, please support the authors and buy an official WakaTime subscription!

License

GPL-v3 @ Ferdinand Mütsch