Progetto demo: backend in FastAPI per fornire API di analisi su azioni/ETF.
.\dev.ps1Apre due finestre: una col backend, una col frontend dev.
Backend (terminal 1):
cd backend
.\run.ps1
# Backend: http://127.0.0.1:8000
# Swagger: http://127.0.0.1:8000/docsFrontend (terminal 2):
cd frontend
.\run.ps1
# Frontend: http://localhost:4200docker compose up --build
# backend: http://localhost:8000
# frontend: http://localhostGET /healthGET /quote/{symbol}POST /analyzebody{ "symbol":"AAPL", "start":"2025-01-01", "end":"2025-02-01", "window":20 }