Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 701 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 701 Bytes

strava-distance-search

Search for your Strava activities within a distance range: GIF of main UI

Running Locally

  1. pipenv shell
  2. pipenv install
  3. Set a Django secret key to use locally in dev_vars.sh, then source dev_vars.sh
  4. python manage.py migrate if necessary
  5. In Django admin create a 'Social Application' record with your Strava application's client ID and secret key (see django-allauth docs for more)
  6. python manage.py runserver

Tests and Coverage

  1. coverage run --source='.' manage.py test distance_search
  2. coverage report