2022-10-04 10:20:28 +02:00
|
|
|
"""
|
|
|
|
urls.py
|
|
|
|
~~~~~~~
|
|
|
|
"""
|
2022-07-11 20:34:24 +02:00
|
|
|
from django.conf import settings
|
|
|
|
from django.urls import include, path
|
2022-07-19 21:10:05 +02:00
|
|
|
from django.views.static import serve
|
|
|
|
|
|
|
|
import findmydevice
|
2022-07-11 20:34:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
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('findmydevice_project.urls')),
|
2022-07-19 21:10:05 +02:00
|
|
|
#
|
|
|
|
# TODO: Serve from nginx server ;)
|
|
|
|
path(f'{settings.PATH_URL}/<path:path>', serve, {'document_root': findmydevice.WEB_PATH})
|
2022-07-11 20:34:24 +02:00
|
|
|
]
|
|
|
|
else:
|
|
|
|
# Installed to domain root, without a path prefix
|
|
|
|
# Just use the default project urls.py
|
|
|
|
from findmydevice_project.urls import urlpatterns # noqa
|
2022-07-19 21:10:05 +02:00
|
|
|
|
2022-07-19 21:10:05 +02:00
|
|
|
# TODO: Serve from nginx server ;)
|
|
|
|
urlpatterns.append(path('<path:path>', serve, {'document_root': findmydevice.WEB_PATH}))
|