feat(admin): expand exchange admin and unify admin UX
Some checks failed
CI/CD Pipeline / Code Quality Checks (pull_request) Failing after 2m39s
CI/CD Pipeline / Run Tests (pull_request) Successful in 3m0s
CI/CD Pipeline / Run API Inventory E2E Tests (pull_request) Successful in 35s
CI/CD Pipeline / Telegram Notify Success (pull_request) Has been skipped

This commit is contained in:
2026-03-24 13:58:24 +01:00
parent 559b9bc5ef
commit c98ba76081
33 changed files with 2915 additions and 209 deletions

View File

@@ -18,6 +18,24 @@ services:
timeout: 10s
retries: 3
db_exchange_target:
image: postgres:15.10
container_name: db_exchange_target
restart: unless-stopped
environment:
POSTGRES_DB: ${TARGET_POSTGRES_DB:-mostovik_target}
POSTGRES_USER: ${TARGET_POSTGRES_USER:-postgres}
POSTGRES_PASSWORD: ${TARGET_POSTGRES_PASSWORD:-postgres}
volumes:
- ./data/db_exchange_target:/var/lib/postgresql/data
ports:
- "5433:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 30s
timeout: 10s
retries: 3
redis:
image: redis:7-alpine
container_name: redis