feat: Asset Catalog system, PostGIS integration and RobotScout V1

This commit is contained in:
2026-02-11 22:47:38 +00:00
parent a63e6c8fac
commit 09a0430384
53 changed files with 2756 additions and 426 deletions

View File

@@ -97,6 +97,23 @@ services:
condition: service_started
restart: unless-stopped
# Katalógus felderítő robot
catalog_robot:
build: ./backend
container_name: service_finder_robot_catalog
command: python -m app.workers.catalog_robot
volumes:
- ./backend:/app
env_file:
- .env # Itt elég a gyökérben lévő .env, ha ott vannak a DB adatok
depends_on:
migrate:
condition: service_completed_successfully # Csak ha a migráció kész!
networks:
- default
- shared_db_net # Ez kell, hogy lássa a külső adatbázist
restart: always
networks:
default:
driver: bridge