services: backend: build: target: development environment: DATABASE_URL: sqlite+aiosqlite:///./sejeteralo.db SECRET_KEY: dev-secret-key DEBUG: "true" CORS_ORIGINS: '["http://localhost:3000"]' ports: !override - "8000:8000" volumes: - ../backend:/app labels: [] frontend: build: target: development environment: NUXT_PUBLIC_API_BASE: http://localhost:8000/api/v1 ports: !override - "3000:3000" - "24678:24678" volumes: - ../frontend:/app labels: []