django-fritzconnection_ynh/conf/urls.py
JensDiemer 0c80fd54b1 Project updates
* Cache CI `.cache` path
* Run Safety check in CI
* Use https://install.python-poetry.org
* remove flynt
* Update django settings
* Bugfix tox config
* Update/Bugfix YunoHost scripts
* Update tests
2022-10-04 17:52:42 +02:00

20 lines
475 B
Python

"""
urls.py
~~~~~~~
"""
from django.conf import settings
from django.urls import include, path
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}/', 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