Skip to content

Instantly share code, notes, and snippets.

@vishwajeetio
Created December 22, 2019 09:53
Show Gist options
  • Save vishwajeetio/0f0584dd70796a78ab2655687868b7b2 to your computer and use it in GitHub Desktop.
Save vishwajeetio/0f0584dd70796a78ab2655687868b7b2 to your computer and use it in GitHub Desktop.
"""djreact URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/3.0/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('api-auth/', include('rest_framework.urls')),
path('rest-auth/', include('rest_auth.urls')),
path('rest-auth/registration/', include('rest_auth.registration.urls')),
path('admin/', admin.site.urls),
path('api/', include('articles.api.urls'))
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment