Merge pull request #1001

This commit is contained in:
symfony-flex-server[bot]
2020-09-08 16:17:00 +00:00
committed by GitHub
2 changed files with 27 additions and 0 deletions
@@ -0,0 +1,15 @@
fitbit:
# Get client ID and Secret, register an app here: https://dev.fitbit.com/apps
clientId: '%env(FITBIT_CLIENT_ID)%'
clientSecret: '%env(FITBIT_CLIENT_SECRET)%'
# For available scopes, see here: https://dev.fitbit.com/build/reference/web-api/oauth2/#scope
scopes:
- activity
- heartrate
- location
- nutrition
- profile
- settings
- sleep
- social
- weight
+12
View File
@@ -0,0 +1,12 @@
{
"bundles": {
"FitbitBundle\\FitbitBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"FITBIT_CLIENT_ID": "not-a-real-id",
"FITBIT_CLIENT_SECRET": "not-a-real-secret"
}
}