mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 02:35:14 +00:00
Merge pull request #14 from SergeantPanda/main
Fixes manage commands not working
This commit is contained in:
commit
d1954638f6
4 changed files with 8 additions and 5 deletions
|
|
@ -24,14 +24,14 @@ schema_view = get_schema_view(
|
|||
urlpatterns = [
|
||||
# API Routes
|
||||
path('api/', include(('apps.api.urls', 'api'), namespace='api')),
|
||||
path('output/', include('apps.output.urls', namespace='output')),
|
||||
path('api', RedirectView.as_view(url='/api/', permanent=True)),
|
||||
|
||||
# Admin
|
||||
path('admin', RedirectView.as_view(url='/admin/', permanent=True)), # This fixes the issue
|
||||
path('admin/', admin.site.urls),
|
||||
|
||||
# Outputs
|
||||
path('output', RedirectView.as_view(url='/output/', permanent=True)), # This fixes the issue
|
||||
path('output', RedirectView.as_view(url='/output/', permanent=True)),
|
||||
path('output/', include(('apps.output.urls', 'output'), namespace='output')),
|
||||
|
||||
# HDHR
|
||||
|
|
|
|||
|
|
@ -1,2 +0,0 @@
|
|||
--index-url https://download.pytorch.org/whl/cpu/
|
||||
torch==2.6.0
|
||||
|
|
@ -1 +0,0 @@
|
|||
sentence-transformers==3.4.1
|
||||
|
|
@ -16,3 +16,9 @@ django-cors-headers
|
|||
djangorestframework-simplejwt
|
||||
m3u8
|
||||
rapidfuzz==3.12.1
|
||||
# PyTorch dependencies (CPU only)
|
||||
--extra-index-url https://download.pytorch.org/whl/cpu/
|
||||
torch==2.6.0+cpu
|
||||
|
||||
# ML/NLP dependencies
|
||||
sentence-transformers==3.4.1
|
||||
Loading…
Add table
Add a link
Reference in a new issue