2024-06-18 08:07:16 +02:00
|
|
|
import findmydevice
|
2022-07-11 20:34:24 +02:00
|
|
|
from django.conf import settings
|
|
|
|
from django.urls import include, path
|
2024-06-17 21:12:19 +02:00
|
|
|
from django.views.generic import RedirectView
|
2024-06-18 08:07:16 +02:00
|
|
|
from django.views.static import serve
|
2022-07-19 21:10:05 +02:00
|
|
|
|
2022-07-11 20:34:24 +02:00
|
|
|
|
2024-06-17 21:12:19 +02:00
|
|
|
if settings.PATH_URL:
|
2024-06-18 08:07:16 +02:00
|
|
|
# settings.PATH_URL is app_path
|
2024-06-17 21:12:19 +02:00
|
|
|
# Prefix all urls with "PATH_URL":
|
2022-07-11 20:34:24 +02:00
|
|
|
urlpatterns = [
|
2024-06-17 21:12:19 +02:00
|
|
|
path('', RedirectView.as_view(url=f'{settings.PATH_URL}/')),
|
|
|
|
path(f'{settings.PATH_URL}/', include('findmydevice_project.urls')),
|
2024-06-18 08:07:16 +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}))
|