mirror of
https://github.com/YunoHost-Apps/django-fmd_ynh.git
synced 2024-09-03 18:26:27 +02:00
e0e4a265ac
* 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
27 lines
826 B
Python
27 lines
826 B
Python
"""
|
|
urls.py
|
|
~~~~~~~
|
|
"""
|
|
from django.conf import settings
|
|
from django.urls import include, path
|
|
from django.views.static import serve
|
|
|
|
import findmydevice
|
|
|
|
|
|
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')),
|
|
#
|
|
# TODO: Serve from nginx server ;)
|
|
path(f'{settings.PATH_URL}/<path:path>', serve, {'document_root': findmydevice.WEB_PATH})
|
|
]
|
|
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}))
|