feat: add migrations, test scripts, and utility tools

- Add database migrations (006-028) for face recognition, identity, file_uuid
- Add test scripts for ASR, face, search, processing
- Add portal frontend (Tauri)
- Add config, benchmark, and monitoring utilities
- Add model checkpoints and pretrained model references
This commit is contained in:
Warren
2026-04-30 15:11:53 +08:00
parent 4d75b2e251
commit b54c2def30
192 changed files with 46721 additions and 0 deletions

7
create_job.sql Normal file
View File

@@ -0,0 +1,7 @@
-- 1. Create monitor job
INSERT INTO monitor_jobs (uuid, video_path, status)
VALUES ('9760d0820f0cf9a7', '/Users/accusys/momentry/var/sftpgo/data/demo/ExaSAN PCIe series - Director Ou Yu-Zhi Shares His Experience.mp4', 'pending')
RETURNING id;
-- Note: The job_id will be returned. Let's assume it's 18 for now.
-- We'll run these commands step by step.