Optimize shot table loading performance
- Pass episode_id filter to backend API instead of client-side filtering, reducing payload size when an episode is selected - Skip getShot refetch in ShotDetailPanel when initialShot prop is provided - Fix redundant DB query in list_shots: read project.custom_task_statuses directly from the already-fetched project object - Add missing indexes on Task.shot_id, Task.assigned_user_id, Task.deleted_at and Episode.project_id; add add_perf_indexes.py migration script to apply them to existing databases - Center login page layout - Update CLAUDE.md and AGENTS.md with correct venv path Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -33,9 +33,11 @@ LinkDesk is a VFX/animation production management system: FastAPI backend + Vue
|
||||
|
||||
### Backend
|
||||
```bash
|
||||
# venv lives at repo root, not inside backend/
|
||||
cd backend
|
||||
# Windows: .venv\Scripts\activate | bash/mac: source .venv/bin/activate
|
||||
..\venv\Scripts\activate # Windows PowerShell
|
||||
uvicorn main:app --reload --port 8000
|
||||
# or invoke directly: D:\Repo\LinkDesk\.venv\Scripts\uvicorn.exe main:app --reload --port 8000
|
||||
```
|
||||
|
||||
### Frontend
|
||||
|
||||
Reference in New Issue
Block a user