From a05b2efd266603785d6d494fc895822bc2f28052 Mon Sep 17 00:00:00 2001 From: GotthardG <51994228+GotthardG@users.noreply.github.com> Date: Thu, 10 Apr 2025 21:52:44 +0200 Subject: [PATCH] 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. --- .gitlab-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9c1ab65..880f41b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -72,8 +72,11 @@ release: - chmod -R u+w "$CI_PROJECT_DIR" script: + - ls -la "$CI_PROJECT_DIR/config_${ENVIRONMENT}.json" # <-- Verify host file + - file "$CI_PROJECT_DIR/config_${ENVIRONMENT}.json" # <-- Confirm host file type # build and run commands within docker container context - - docker compose --env-file frontend/.env.test build backend + - docker compose --env-file frontend/.env.${ENVIRONMENT} build backend + # Run commands inside your 'backend' service container - docker compose run --rm backend mkdir -p /app/backend/ssl