-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8683ee5
commit f655ef3
Showing
1 changed file
with
30 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,40 @@ | ||
# yet-another-garmin-connect-client | ||
# YAGCC | ||
YAGCC: Yet Another Garmin Connect Client | ||
|
||
# Docker-Compose Example | ||
YAGCC is a: | ||
- Library | ||
- CLI client | ||
- Selfhosted WEB API | ||
|
||
using which you can create a .fit file with activity and upload it to Garmin Connect. | ||
|
||
Currently it is at a very early stage. It only has the features that I needed for my other projects. | ||
|
||
## Examples | ||
YAGCC was created for and in my 2 other projects: | ||
- Mi Scale Exporter https://github.com/lswiderski/mi-scale-exporter | ||
- Web Body Composition https://github.com/lswiderski/WebBodyComposition | ||
|
||
|
||
## Usage | ||
|
||
![CLI](https://github.com/lswiderski/yet-another-garmin-connect-client/blob/main/resources/img/yagcc.png?raw=true) | ||
|
||
![uploadbodycomposition](https://github.com/lswiderski/yet-another-garmin-connect-client/blob/main/resources/img/uploadbodycomposition.png?raw=true) | ||
|
||
![uploadbloodpressure](https://github.com/lswiderski/yet-another-garmin-connect-client/blob/main/resources/img/uploadbloodpressure.png?raw=true) | ||
|
||
![API](https://github.com/lswiderski/yet-another-garmin-connect-client/blob/main/resources/img/api.png?raw=true) | ||
|
||
## Docker-Compose Example | ||
```yaml | ||
version: "3.9" | ||
|
||
services: | ||
yagcc-api: | ||
yagcc-api: | ||
container_name: YAGCC | ||
restart: unless-stopped | ||
image: lswiderski/yet-another-garmin-connect-client-api | ||
ports: | ||
- 80:80 | ||
``` |