mirror of
https://github.com/Eugeny/tabby-web.git
synced 2025-08-17 06:41:53 +00:00
.github
app-dist
backend
public
tabby
app
__init__.py
asgi.py
middleware.py
settings.py
urls.py
wsgi.py
.dockerignore
.gitignore
Dockerfile
cloudbuild.yaml
gunicorn.conf.py
manage.py
poetry.lock
pyproject.toml
start.sh
frontend
.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),
|
|
]
|