django-fritzconnection_ynh/conf/urls.py
2024-03-29 00:18:41 +01:00

20 lines
459 B
Python

"""
urls.py
~~~~~~~
"""
from django.conf import settings
from django.urls import include, path
if settings.PATH:
# settings.PATH is the $YNH_APP_ARG_PATH
# Prefix all urls with "PATH":
urlpatterns = [
path(f'{settings.PATH}/', include('djfritz_project.urls')),
]
else:
# Installed to domain root, without a path prefix
# Just use the default project urls.py
from djfritz_project.urls import urlpatterns # noqa