1
0
mirror of https://github.com/Eugeny/tabby-web.git synced 2025-09-21 07:36:06 +00:00
Files
.github
backend
tabby
app
__init__.py
middleware.py
settings.py
urls.py
wsgi.py
.dockerignore
.flake8
.gitignore
Dockerfile
cloudbuild.yaml
gunicorn.conf.py
manage.py
poetry.lock
pyproject.toml
start.sh
docs
frontend
.bumpversion.cfg
.editorconfig
.flake8
.gitignore
LICENSE
README.md
docker-compose.yml
tabby-web/backend/tabby/urls.py
Eugene Pankov f677febac3 init
2021-10-31 18:15:23 +01:00

11 lines
304 B
Python

from django.contrib import admin
from django.urls import path, include
from .app.urls import urlpatterns as app_urlpatterns
urlpatterns = [
path('', include(app_urlpatterns)),
path('api/1/auth/social/', include('social_django.urls', namespace='social')),
path('admin/', admin.site.urls),
]