50 lines
1.8 KiB
Python
50 lines
1.8 KiB
Python
"""
|
|
URL configuration for framework project.
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
https://docs.djangoproject.com/en/4.2/topics/http/urls/
|
|
Examples:
|
|
Function views
|
|
1. Add an import: from my_app import views
|
|
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
|
Class-based views
|
|
1. Add an import: from other_app.views import Home
|
|
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
|
Including another URLconf
|
|
1. Import the include() function: from django.urls import include, path
|
|
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
|
"""
|
|
from django.contrib import admin
|
|
from django.urls import path, include, re_path
|
|
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
|
|
from django.views.static import serve
|
|
from django.conf import settings
|
|
import os
|
|
|
|
urlpatterns = [
|
|
# path('admin/', admin.site.urls),
|
|
# path(r'app/', include('app.urls')),
|
|
path(r'workshop/', include('workshop_monitor.urls')),
|
|
path(r'', include('app.urls')),
|
|
]
|
|
|
|
if settings.DEBUG:
|
|
urlpatterns += [
|
|
re_path(r'^upload/(?P<path>.*)$', serve,
|
|
{'document_root': os.path.join(settings.BASE_DIR, 'static', 'upload')}),
|
|
]
|
|
urlpatterns += staticfiles_urlpatterns()
|
|
|
|
# Mutable media is never served by WhiteNoise or the development static handler.
|
|
from monitor_runtime import web
|
|
urlpatterns = [
|
|
path('setup', web.setup),
|
|
path('license', web.license_page),
|
|
path('license/status', web.license_status),
|
|
path('license/request', web.license_request),
|
|
path('license/import', web.license_import),
|
|
path('static/storage/<path:path>', web.private_file),
|
|
path('static/upload/audio/<path:path>', web.private_file, {'area': 'audio'}),
|
|
path('upload/audio/<path:path>', web.private_file, {'area': 'audio'}),
|
|
] + urlpatterns
|