mirror of
https://github.com/Eugeny/tabby-web.git
synced 2025-09-21 07:36:06 +00:00
.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
11 lines
304 B
Python
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),
|
|
]
|