ci: enable ruff linting and pytest in CI pipeline #1568

Merged
AI-Manager merged 14 commits from feature/1559-1560-enable-ci-linting-and-tests into main 2026-04-19 23:08:09 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit c649eaf343 - Show all commits
+1 -1
View File
@@ -40,7 +40,7 @@ services:
JWT_SECRET: ${JWT_SECRET:-sparc-secret-key-change-in-production}
CORS_ORIGINS: ${CORS_ORIGINS:-}
APP_ENV: ${APP_ENV:-development}
ROOT_PATH: /api
ROOT_PATH: ""
ports:
- "8000:8000"
depends_on:
+1 -1
View File
@@ -15,7 +15,7 @@ server {
# Proxy API requests to backend
location /api/ {
proxy_pass ${API_URL}/;
proxy_pass ${API_URL};
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';