Add job processing system with streaming endpoint

Introduced a `processing` router to handle job streaming using server-sent events. Added `Jobs` and `JobStatus` models for managing job-related data, along with database creation logic. Updated the `sample` router to create new job entries during experiment creation.
This commit is contained in:
GotthardG 2025-04-10 22:22:51 +02:00
parent c24d8d9afa
commit 1da5634013
2 changed files with 4 additions and 2 deletions

View File

@ -79,8 +79,8 @@ release:
# Run commands inside your 'backend' service container
- docker compose run --rm backend mkdir -p /app/backend/ssl
- docker compose run --rm backend bash make_openapi_client.sh
- docker compose -env-file frontend/.env.${ENVIRONMENT} run --rm backend mkdir -p /app/backend/ssl
- docker compose -env-file frontend/.env.${ENVIRONMENT} run --rm backend bash make_openapi_client.sh
# After script finishes execution within the container,
# revert to the runner environment context if needed

View File

@ -7,6 +7,8 @@ RUN mkdir -p /app/backend/ssl
# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
wget \
default-jre \
build-essential \
unixodbc-dev \
libmariadb-dev \