Skip to content

Commit b59937f

Browse files
Update README.md
1 parent d64df4a commit b59937f

File tree

1 file changed

+5
-18
lines changed

1 file changed

+5
-18
lines changed

README.md

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -77,26 +77,19 @@ ACTIVITY_TYPES_TO_IMPORT='["Ride", "VirtualRide"]'
7777
# Your birthday. Needed to calculate heart rate zones.
7878
ATHLETE_BIRTHDAY=YYYY-MM-DD
7979
# History of weight (in kg or pounds, depending on UNIT_SYSTEM). Needed to calculate relative w/kg.
80+
# Check https://github.com/robiningelbrecht/strava-statistics/wiki/FAQ for more info.
8081
ATHLETE_WEIGHTS='{
8182
"YYYY-MM-DD": 74.6,
8283
"YYYY-MM-DD": 70.3
8384
}'
84-
# History of FTP. Needed to calculate activity stress level
85+
# History of FTP. Needed to calculate activity stress level.
86+
# Check https://github.com/robiningelbrecht/strava-statistics/wiki/FAQ for more info.
8587
FTP_VALUES='{
8688
"YYYY-MM-DD": 198,
8789
"YYYY-MM-DD": 220
8890
}'
8991
```
9092

91-
### Permission issues
92-
93-
You might encounter an `SQLSTATE[HY000] [14] unable to open database file` error. There's an [open issue](https://github.com/robiningelbrecht/strava-statistics/issues/57) to investigate this. In the mean time, you can run following commands manually to fix this:
94-
95-
```bash
96-
> chmod -R 777 storage/database
97-
> chmod -R 777 storage/files
98-
```
99-
10093
### Import all challenges and trophies
10194

10295
Strava does not allow to fetch all your completed challenges and trophies, but there's a little workaround if you'd like to import those:
@@ -122,15 +115,9 @@ You can configure a crontab on your host system:
122115
docker compose exec app bin/console app:strava:build-files
123116
```
124117

125-
## 🧐 Some things to consider
118+
## 📚 Wiki
126119

127-
* Because of technical (Strava) limitations, not all Strava challenges can be imported. Only the visible ones on your public profile can be imported
128-
(please be sure that your profile is public, otherwise this won't work)
129-
* Running the import for the first time can take a while, depending on how many activities you have on Strava.
130-
Strava's API has a `rate limit` of `100 request per 15 minutes` and a `1000 requests per day`. We have to make sure
131-
this limit is not exceeded. See https://developers.strava.com/docs/rate-limits/. If you have more than 500 activities,
132-
you might run into the daily rate limit. If you do so, the app will import the remaining activities the next day(s).
133-
* You can only build the files once all data from Strava was imported
120+
Read [the wiki](https://github.com/robiningelbrecht/strava-statistics/wiki/FAQ) before opening new issues. The question you have might be answered over there.
134121

135122
## 💡 Feature request?
136123

0 commit comments

Comments
 (0)