update requirements.txt, fix staticfiles in urls for v-server
This commit is contained in:
parent
eaabd96104
commit
54f411ae87
2 changed files with 4 additions and 1 deletions
|
|
@ -14,10 +14,12 @@ djangorestframework==3.15.2
|
|||
ffmpeg-python==0.2.0
|
||||
future==1.0.0
|
||||
gripcontrol==4.2.0
|
||||
gunicorn==23.0.0
|
||||
idna==3.7
|
||||
imageio-ffmpeg==0.5.1
|
||||
MarkupSafe==2.1.5
|
||||
numpy==2.0.1
|
||||
packaging==24.1
|
||||
pillow==10.4.0
|
||||
psutil==6.0.0
|
||||
psycopg2-binary==2.9.9
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ from auth.views import (
|
|||
)
|
||||
from content import views as content_views
|
||||
from debug_toolbar.toolbar import debug_toolbar_urls
|
||||
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
|
||||
|
||||
urlpatterns = [
|
||||
path('admin/', admin.site.urls),
|
||||
|
|
@ -50,4 +51,4 @@ urlpatterns = [
|
|||
path('auth/verify-email/', VerifyEmailView.as_view()),
|
||||
path('auth/forgot-password/', ForgotPasswordView.as_view()),
|
||||
path('auth/change-password/', ChangePasswordView.as_view()),
|
||||
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) + debug_toolbar_urls()
|
||||
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) + debug_toolbar_urls() + staticfiles_urlpatterns()
|
||||
Loading…
Reference in a new issue