2 Commits

Author SHA1 Message Date
163e7abf47 No longer needed
All checks were successful
CI / test (push) Successful in 41s
2025-06-20 12:47:00 +02:00
d51f409497 Add basic docco
All checks were successful
CI / test (push) Successful in 36s
2025-06-20 12:17:39 +02:00
2 changed files with 23 additions and 10 deletions

View File

@@ -0,0 +1,23 @@
# charmite
Charmite is a simple TUI to add/view time entries in the [Mite](https://mite.de/en/)
time tracking tool.
## Installation
Download the appropriate binary from https://code.ppl.town/justin/charmite/releases
Or compile from the source code with:
go build .
## Using
You'll need to set the environment variables:
* MITE_API
* MITE_DOMAIN
To appropriate values.
See the [Mite FAQ](https://mite.de/en/faq.html) under "How do I allow API access for my account? Where can I get an API key?" for details on how to obtain your API key.

View File

@@ -1,10 +0,0 @@
#!/bin/sh
GOOS=linux GOARCH=amd64 go build -o cal_linux_amd64
GOOS=darwin GOARCH=arm64 go build -o cal_darwin_arm64
GOOS=windows GOARCH=amd64 go build -o cal_windows_lol_amd64
zip cal.zip cal_linux_amd64 cal_darwin_arm64 cal_windows_lol_amd64
open .