Time Tracker
Find a file
andi-makes 8d877482bd
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Refactored authentication code
moved auth code to its own file, implement a buffer to store state
tokens.
2022-12-03 21:11:31 +01:00
.woodpecker Re-added clippy and fmt check 2022-10-23 14:50:45 +02:00
src Refactored authentication code 2022-12-03 21:11:31 +01:00
.gitignore Initial commit 2022-10-23 12:53:59 +02:00
Cargo.lock Refactored authentication code 2022-12-03 21:11:31 +01:00
Cargo.toml Initial commit 2022-10-23 12:53:59 +02:00
Dockerfile Initial commit 2022-10-23 12:53:59 +02:00
LICENSE Initial commit 2022-10-23 12:53:59 +02:00
README.md Added docker compose example to readme 2022-10-23 13:02:00 +02:00

tmtrk - Time Track [WIP]

I want to track the time I spend on doing tasks. This tool does exactly that.

Example docker compose file:

version: "3.8"
services:
  swh:
    image: git.schmarrn.dev/andi/tmtrk:latest
    environment:
      TMTRK_CLIENT_ID: "YOUR_CLIENT_ID"
      TMTRK_CLIENT_SECRET: "YOUR_CLIENT_SECRET"
      TMTRK_ISSUER_URL: "URL_TO_OIDC_PROVIDER"
      TMTRK_HOST_URL: "https://your-domain.here"

Reverse Proxy should point to port 8080.