forked from github/plane
6bfeb6af34
* chore: upgrade backend dependencies * dev: update storage settings for self hosted version
27 lines
598 B
Python
27 lines
598 B
Python
"""plane URL Configuration
|
|
|
|
"""
|
|
|
|
# from django.contrib import admin
|
|
from django.urls import path, include, re_path
|
|
from django.views.generic import TemplateView
|
|
|
|
from django.conf import settings
|
|
|
|
# from django.conf.urls.static import static
|
|
|
|
urlpatterns = [
|
|
# path("admin/", admin.site.urls),
|
|
path("", TemplateView.as_view(template_name="index.html")),
|
|
path("api/", include("plane.api.urls")),
|
|
path("", include("plane.web.urls")),
|
|
]
|
|
|
|
|
|
if settings.DEBUG:
|
|
import debug_toolbar
|
|
|
|
urlpatterns = [
|
|
re_path(r"^__debug__/", include(debug_toolbar.urls)),
|
|
] + urlpatterns
|