Docker Container
$ git clone https://github.com/0x7a6b4c/skyeye.git && cd skyeye
$ docker‑compose up --build
# Frontend → http://localhost:3000
# Backend UI → http://localhost:8000/docs
Behind the scenes Compose spins up two containers:
Container
Port
Purpose
skyeye‑backend
8000
FastAPI API (Scan Engine)
skyeye‑frontend
3000
Next.js UI (Tree Visualiser)
Environment variable NEXT_PUBLIC_API_BASE_URL
(already set in docker‑compose.yml) tells the frontend where to find the API.
Last updated