andyreagan / django-strava

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

django-strava

django-strava is a Django strava App

Detailed documentation is in the "docs" directory.

Quick start

  1. Add "strava" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
    ...,
    "django_strava",
]
  1. Include the strava URLconf in your project urls.py like this:
path("strava/", include("django_strava.urls")),
  1. Run python manage.py migrate to create the models.

  2. Visit the /strava/login URL to sign in with strava.

About

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 95.5%Language:HTML 4.5%