Location Intelligence is a web application that helps property buyers evaluate the accessibility and convenience of a location by visualizing nearby facilities and calculating location scores.
- Frontend: React, TypeScript, Vite, React Leaflet, Tailwind CSS
- Backend: Python, FastAPI, Pydantic, HTTPX, uv package manager
- Ensure Docker and Docker Compose are installed.
- Run
docker-compose up --build - Frontend is available at
http://localhost:5173 - Backend API is available at
http://localhost:8000/api
Backend:
cd backend
uv sync
uv run uvicorn app.main:app --host 0.0.0.0 --port 8000 --reloadFrontend:
cd frontend
npm install
npm run dev