ketotrack/README.md

17 lines
433 B
Markdown
Raw Permalink Normal View History

2024-05-12 02:06:45 +00:00
# ketotrack
2024-05-12 19:13:21 +00:00
Simple ketosis tracker written in Go.
2024-05-12 02:06:45 +00:00
2024-05-12 19:13:21 +00:00
## Features
- Record your blood glucose and ketone levels
- Record notes about things that might affect your ketosis
2024-05-12 02:06:45 +00:00
2024-05-12 19:13:21 +00:00
Reading data will be saved to `$HOME/.ketotrack/records.json` and graphing will be implemented at a later date.
2024-05-12 02:06:45 +00:00
## Building and Installing
2024-05-12 20:15:50 +00:00
Use the provided make file and then move the binary to your directory choice:
2024-05-12 20:06:50 +00:00
2024-05-12 02:06:45 +00:00
```shell
2024-05-12 20:15:50 +00:00
make
mv ketotrack ~/.local/bin/
2024-05-12 20:06:50 +00:00
```