mirror of
https://github.com/kjanat/livegraphs-django.git
synced 2026-01-16 12:32:10 +01:00
Implement data integration tasks with Celery, including periodic fetching and manual refresh of chat data; add utility functions for data processing and transcript handling; create views and URLs for manual data refresh; establish Redis and Celery configuration; enhance error handling and logging; introduce scripts for data cleanup and fixing dashboard data; update documentation for Redis and Celery setup and troubleshooting.
This commit is contained in:
14
dashboard_project/data_integration/urls.py
Normal file
14
dashboard_project/data_integration/urls.py
Normal file
@ -0,0 +1,14 @@
|
||||
from django.urls import path
|
||||
|
||||
from . import views
|
||||
|
||||
app_name = "data_integration"
|
||||
|
||||
urlpatterns = [
|
||||
path("manual-refresh/", views.manual_data_refresh, name="manual_data_refresh"),
|
||||
path(
|
||||
"refresh/<int:source_id>/",
|
||||
views.refresh_specific_datasource,
|
||||
name="refresh_specific_datasource",
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user