Base setup

This commit is contained in:
2025-09-23 13:30:03 +08:00
parent 1057ed8690
commit e51154bb29
34 changed files with 2574 additions and 1 deletions

8
crawler/urls.py Normal file
View File

@@ -0,0 +1,8 @@
from django.urls import path, include
from . import views
urlpatterns = [
path('', views.dashboard, name='dashboard'),
path('search/', views.search_page, name='search'),
path('crawled-content/<int:content_id>/preview/', views.preview_crawled_content, name='preview_crawled_content'),
]