-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- config as dataclass stored in local json file - ruff formatting/import order - remove .env file - questionary for interactive config file generation - rename daemonise to monitor - polling handler for monitor-mode (better cross platform support) - move .garth directory to script folder rather than FITFiles folder - add minimum python version check - better organize main code path - update README
- Loading branch information
Showing
7 changed files
with
568 additions
and
314 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"garmin_username": "username", | ||
"garmin_password": "password", | ||
"fitfiles_path": "C:\Users\username\Documents\TPVirtual\0123456789ABCDEF\FITFiles" | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,4 +3,5 @@ | |
.venv | ||
.vscode | ||
.uploaded_files.json | ||
*.fit | ||
*.fit | ||
.config.json |
Oops, something went wrong.