django-for-runners_ynh/conf/urls.py

27 lines
978 B
Python
Raw Normal View History

2021-01-17 11:41:27 +01:00
from django.conf import settings
from django.conf.urls import static
from django.contrib import admin
from django.urls import path
# from django_yunohost_integration.views import request_media_debug_view
2021-10-10 14:35:06 +02:00
2021-01-17 11:41:27 +01:00
if settings.PATH_URL:
# settings.PATH_URL is the $YNH_APP_ARG_PATH
# Prefix all urls with "PATH_URL":
urlpatterns = [
path(f'{settings.PATH_URL}/', admin.site.urls),
# path(f'{settings.PATH_URL}/debug/', request_media_debug_view),
2021-10-10 14:35:06 +02:00
# TODO: https://github.com/jedie/django-for-runners/issues/25
# MEDIA_URL contains the "PATH_URL" already:
# path(settings.MEDIA_URL.lstrip('/'), include('django_tools.serve_media_app.urls')),
2021-01-17 11:41:27 +01:00
]
if settings.SERVE_FILES:
urlpatterns += static.static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
else:
# Installed to domain root, without a path prefix
# Just use the default project urls.py
from for_runners_project.urls import urlpatterns # noqa