shoehorning graphql, step functions and lamdas. aws deployment scripts

This commit is contained in:
2026-02-06 18:25:42 -03:00
parent 013587d108
commit e642908abb
35 changed files with 2354 additions and 930 deletions

View File

@@ -66,6 +66,7 @@ export interface TranscodeJob {
speed: string | null;
error_message: string | null;
celery_task_id: string | null;
execution_arn: string | null;
priority: number;
created_at: string | null;
started_at: string | null;
@@ -80,6 +81,7 @@ export interface CreateJobRequest {
trim_start: number | null;
trim_end: number | null;
output_filename: string | null;
priority: number;
}
export interface SystemStatus {
@@ -87,6 +89,13 @@ export interface SystemStatus {
version: string;
}
export interface ScanResult {
found: number;
registered: number;
skipped: number;
files: string[];
}
export interface WorkerStatus {
available: boolean;
active_jobs: number;