django_example_ynh/conf/urls.py

30 lines
891 B
Python
Raw Normal View History

"""
urls.py
~~~~~~~
Look at real examples, here:
* https://github.com/YunoHost-Apps/django-fritzconnection_ynh/blob/master/conf/urls.py
* https://github.com/YunoHost-Apps/django-for-runners_ynh/blob/testing/conf/urls.py
* https://github.com/YunoHost-Apps/pyinventory_ynh/blob/testing/conf/urls.py
"""
2020-12-23 19:53:13 +01:00
from django.conf import settings
from django.urls import include, path
from django.views.generic import RedirectView
2020-12-23 19:53:13 +01:00
if settings.PATH_URL:
2023-08-20 17:18:17 +02:00
# settings.PATH_URL is the $YNH_APP_ARG_PATH_URL
# Prefix all urls with "PATH_URL":
urlpatterns = [
path('', RedirectView.as_view(url=f'{settings.PATH_URL}/')),
path(f'{settings.PATH_URL}/', include('django_example.urls')),
]
else:
# Installed to domain root, without a path prefix
# Just use the default project urls.py
from django_example.urls import urlpatterns # noqa