A smart parking assistant powered by AI
Park-IA is an intelligent parking assistant that leverages AI to help users find available parking spots in real time.
Due to the lack of access to public camera feeds, the system currently operates on predefined parking spaces for demonstration and testing purposes.
The long-term goal is to provide a scalable solution that can later integrate live data sources to dynamically detect and predict parking availability.
- Frontend: React
- Backend: FastAPI (Python)
- Middleware / API Handling: Axios
This architecture ensures smooth communication between the user interface and the backend AI logic.
To launch the backend server, run one of the following commands in your terminal:
uvicorn app.main:app --reloadIf the first command doesn't work, try this:
python -m uvicorn app.main:app --reloadThis starts the FastAPI server in development mode with automatic reload enabled whenever changes are made to the codebase.