feat(organizations): migrate source storage to polymorphic records

This commit is contained in:
2026-05-19 10:23:53 +02:00
parent 19a7d5a91c
commit 4ca2fa25d5
44 changed files with 7129 additions and 1551 deletions

View File

@@ -4,6 +4,13 @@ x-app-build: &app-build
args:
INSTALL_DEV: "true"
x-parser-runtime-env: &parser-runtime-env
CHECKO_API_KEY: ${CHECKO_API_KEY:-}
SUPERJOB_APP_ID: ${SUPERJOB_APP_ID:-}
PROXY_TOOLS_API_KEY: ${PROXY_TOOLS_API_KEY:-}
PARSER_USE_RUNTIME_PROXIES: ${PARSER_USE_RUNTIME_PROXIES:-}
CHECKO_USE_RUNTIME_PROXIES: ${CHECKO_USE_RUNTIME_PROXIES:-}
services:
db:
image: postgres:15.10
@@ -65,6 +72,8 @@ services:
restart: unless-stopped
env_file:
- .env.dev
environment:
<<: *parser-runtime-env
depends_on:
migrate:
condition: service_completed_successfully
@@ -83,6 +92,7 @@ services:
container_name: mostovik_celery_worker
restart: unless-stopped
environment:
<<: *parser-runtime-env
CELERY_WORKER_CONCURRENCY: "1"
CELERY_WORKER_MAX_MEMORY_PER_CHILD_KB: "3145728"
env_file:
@@ -104,6 +114,8 @@ services:
restart: unless-stopped
env_file:
- .env.dev
environment:
<<: *parser-runtime-env
depends_on:
migrate:
condition: service_completed_successfully