sync
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 3m1s

This commit is contained in:
2025-12-14 08:27:39 -08:00
parent 369d7926a9
commit 65cccaef56
2 changed files with 33 additions and 4 deletions

View File

@@ -97,14 +97,14 @@ class ConfigManager:
"client_secret": "",
"access_token": "",
"refresh_token": "",
"token_file": "data/fitbit_token.json",
"token_file": "fitbit_token.json",
"redirect_uri": "http://localhost:8080/fitbit-callback"
},
"garmin": {
"username": "",
"password": "",
"is_china": False, # Set to True if using Garmin China
"session_data_file": "data/garmin_session.json"
"session_data_file": "garmin_session.json"
},
"sync": {
"sync_interval_minutes": 60,
@@ -113,7 +113,7 @@ class ConfigManager:
"read_only_mode": False # Set to True to prevent uploads to Garmin
},
"database": {
"path": "data/weight_sync.db"
"path": "weight_sync.db"
}
}
# Don't automatically save here, let the caller decide
@@ -150,7 +150,7 @@ class ConfigManager:
"client_secret": "",
"access_token": "",
"refresh_token": "",
"token_file": "data/fitbit_token.json",
"token_file": "fitbit_token.json",
"redirect_uri": "http://localhost:8080/fitbit-callback"
}