ketotrack/README.md

15 lines
465 B
Markdown
Raw 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 19:13:21 +00:00
At some point I'll include a Makefile, until then manually build and copy to any directory in your path.
2024-05-12 02:06:45 +00:00
```shell
go build
mv ketotrack $HOME/.local/bin
2024-05-12 19:13:21 +00:00
```