2023-05-26 19:09:08 +02:00
|
|
|
"""
|
|
|
|
urls.py
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
from django.conf import settings
|
|
|
|
from django.urls import include, path
|
|
|
|
from django.views.generic import RedirectView
|
|
|
|
|
|
|
|
|
|
|
|
if settings.PATH_URL:
|
|
|
|
# settings.PATH_URL is the $YNH_APP_ARG_PATH
|
|
|
|
# Prefix all urls with "PATH_URL":
|
|
|
|
urlpatterns = [
|
|
|
|
path('', RedirectView.as_view(url=f'{settings.PATH_URL}/')),
|
2023-05-26 23:07:02 +02:00
|
|
|
path(f'{settings.PATH_URL}/', include('scovie.urls')),
|
2023-05-26 19:09:08 +02:00
|
|
|
]
|
|
|
|
else:
|
|
|
|
# Installed to domain root, without a path prefix
|
|
|
|
# Just use the default project urls.py
|
2023-05-26 23:07:02 +02:00
|
|
|
from scovie.urls import urlpatterns # noqa
|