1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/scovie_ynh.git synced 2024-09-03 20:16:29 +02:00
scovie_ynh/conf/urls.py
André Théo LAURET 6c3abd1e21 update 7 files
2023-05-26 21:29:29 +04:00

29 lines
872 B
Python

"""
urls.py
~~~~~~~
Look at real examples, here:
* https://github.com/eldertek/django-fritzconnection_ynh/blob/master/conf/urls.py
* https://github.com/eldertek/django-for-runners_ynh/blob/testing/conf/urls.py
* https://github.com/eldertek/pyinventory_ynh/blob/testing/conf/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}/')),
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