From 91c6532e4a14340bd2262e19dae573b95a5da6d0 Mon Sep 17 00:00:00 2001 From: Tyler Adam Martinez Date: Fri, 9 Jan 2026 10:33:01 -0600 Subject: [PATCH 1/3] [CI_cypress] Add SESSION_SECRET_KEY env & update repo name --- .github/workflows/CI_cypress.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI_cypress.yml b/.github/workflows/CI_cypress.yml index b4cdc9ad..404a101a 100644 --- a/.github/workflows/CI_cypress.yml +++ b/.github/workflows/CI_cypress.yml @@ -13,6 +13,7 @@ jobs: OCOTILLO_API_URL: http://localhost:8000 VITE_OCOTILLO_API_URL: http://localhost:8000 AUTHENTIK_DISABLE_AUTHENTICATION: ${{ secrets.AUTHENTIK_TEST }} + SESSION_SECRET_KEY: your_secret_key_here # --- DATABASE VALUES FOR DOCKER COMPOSE --- POSTGRES_HOST: db @@ -25,10 +26,10 @@ jobs: - name: Checkout frontend uses: actions/checkout@v4 - - name: Checkout FastAPI backend (NMSampleLocations staging) + - name: Checkout FastAPI backend (OcotilloAPI staging) uses: actions/checkout@v4 with: - repository: DataIntegrationGroup/NMSampleLocations + repository: DataIntegrationGroup/OcotilloAPI ref: staging path: api-repo From b612b6122183f20fb037758369442aaf391dc845 Mon Sep 17 00:00:00 2001 From: Tyler Adam Martinez Date: Fri, 9 Jan 2026 16:09:29 -0600 Subject: [PATCH 2/3] [CI_cypress] Point to the next ref --- .github/workflows/CI_cypress.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI_cypress.yml b/.github/workflows/CI_cypress.yml index 404a101a..8278cd44 100644 --- a/.github/workflows/CI_cypress.yml +++ b/.github/workflows/CI_cypress.yml @@ -30,7 +30,7 @@ jobs: uses: actions/checkout@v4 with: repository: DataIntegrationGroup/OcotilloAPI - ref: staging + ref: tam-ci-patch path: api-repo - name: Set up Node.js From 16ab0bfb6dab1a8a7a7d6311a2527da0fdb6402e Mon Sep 17 00:00:00 2001 From: Tyler Adam Martinez Date: Fri, 9 Jan 2026 16:21:53 -0600 Subject: [PATCH 3/3] [CI_cypress] Add UVICORN_RELOAD env --- .github/workflows/CI_cypress.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/CI_cypress.yml b/.github/workflows/CI_cypress.yml index 8278cd44..aae8e1b6 100644 --- a/.github/workflows/CI_cypress.yml +++ b/.github/workflows/CI_cypress.yml @@ -14,6 +14,7 @@ jobs: VITE_OCOTILLO_API_URL: http://localhost:8000 AUTHENTIK_DISABLE_AUTHENTICATION: ${{ secrets.AUTHENTIK_TEST }} SESSION_SECRET_KEY: your_secret_key_here + UVICORN_RELOAD: "false" # --- DATABASE VALUES FOR DOCKER COMPOSE --- POSTGRES_HOST: db