services: api: build: ./backend env_file: - ./backend/.env.example ports: - "8000:8000" web: build: ./frontend environment: - VITE_API_BASE=http://localhost:8000 ports: - "5173:5173" depends_on: - api