1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/django-fmd_ynh.git synced 2024-09-03 18:26:27 +02:00
django-fmd_ynh/conf/urls.py

29 lines
829 B
Python
Raw Normal View History

2024-01-18 21:02:26 +01:00
#!/usr/bin/env python3
"""
urls.py
~~~~~~~
"""
2022-07-11 20:34:24 +02:00
from django.conf import settings
from django.urls import include, path
from django.views.static import serve
import findmydevice
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
if settings.PATH:
# settings.PATH is the $YNH_APP_ARG_PATH
# Prefix all urls with "PATH":
2022-07-11 20:34:24 +02:00
urlpatterns = [
2024-01-18 21:02:26 +01:00
path(f'{settings.PATH}/', include('findmydevice_project.urls')),
#
# TODO: Serve from nginx server ;)
2024-01-18 21:02:26 +01:00
path(f'{settings.PATH}/<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
# TODO: Serve from nginx server ;)
urlpatterns.append(path('<path:path>', serve, {'document_root': findmydevice.WEB_PATH}))