Intelligent Parking Management System | AI-Powered Microservices | Full-Stack Demo
Live Demo: smart-park-iq.vercel.app (first load may take 30-60s due to free-tier cold starts)
ParkIQ is a production-ready parking management platform showcasing modern full-stack architecture with microservices, real-time booking, and payment integration.
ParkIQ is a microservices-based parking platform that handles user authentication, slot management, booking, pricing, and payments. The frontend is a Vite React app and the backend is split into an API gateway plus dedicated services. Designed to be scalable, maintainable, and production-ready.
User Browser
|
v
Frontend (React + Vite)
|
v
API Gateway (Express)
|
+--> User Service
+--> Parking Service
+--> Booking Service
+--> Pricing Service
+--> Payment Service
|
v
MongoDB + External Services
The frontend handles the UI and routing, the gateway centralizes request flow, and each service owns one business domain. This structure makes the project easier to scale, test, and extend.
frontend/- React + Vite UIapi-gateway/- Express gateway and routing layerservices/user-service/- Authentication and user profile logicservices/parking-service/- Parking slot and availability logicservices/booking-service/- Booking lifecycle and receiptsservices/pricing-service/- Pricing and peak-hour calculationsservices/payment-service/- Payment flows and revenue tracking
- User registration, login, reset password, and profile management
- Parking slot browsing, booking, entry, exit, and cancellation
- Admin dashboard for slot seeding and operational management
- Pricing calculations with peak-hour support
- Payment initiation, retry flow, and booking-based payment lookup
- Receipt download for completed bookings
- Responsive frontend with routing and API integration
This project demonstrates practical full-stack and backend engineering skills that are valuable for internships and developer roles:
- Microservices architecture with a dedicated API gateway
- Authentication, authorization, and protected routes
- MongoDB data modeling and service-level separation
- Production-style environment configuration with
.envexamples - Frontend deployment support for Vercel
- Backend orchestration and local multi-service startup scripts
- Testing coverage across services
- Real-world features such as booking, payment, and receipts
- Name: Sai Sri Ram Vanama
- Email: saisriram2796@gmail.com
- LinkedIn: saisriramv
If you are reviewing this repository for hiring or collaboration, the best places to start are the architecture, features, and deployment sections above.
- Node.js and Express.js
- MongoDB and Mongoose
- React 18, Vite, and React Router
- Tailwind CSS
- Axios
- Socket.IO client
- Chart.js and react-chartjs-2
- bcrypt, JWT, and Stripe integration
- Node.js 20 or later
- npm
- MongoDB running locally or a MongoDB Atlas cluster
Clone the repository:
git clone https://github.com/Cypher-IQ/Park-IQ.git
cd "Car Parking System"Install dependencies for every package:
npm run install:allCreate the environment files described in ENVIRONMENT.md.
Start MongoDB.
Run the full app:
npm run dev:allOpen the frontend in your browser:
http://localhost:5173
If you are pushing this project to a new GitHub repository:
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Cypher-IQ/Park-IQ.git
git push -u origin mainIf the remote already exists, just use git add, git commit, and git push.
Deploy the frontend only.
Push the repository to GitHub.
Open Vercel and click New Project.
Import the GitHub repository.
Set the Root Directory to frontend.
Keep these settings:
- Build Command:
npm run build - Output Directory:
dist - Install Command:
npm install
Add VITE_API_URL in Vercel and point it to your live API gateway URL.
Deploy the project.
The frontend Vercel settings are aligned with frontend/vercel.json.
- Email:
admin@parkiq.com - Password:
password123
POST /api/auth/registerPOST /api/auth/loginGET /api/auth/profilePUT /api/auth/profile
GET /api/parking/slotsPOST /api/parking/slotsPATCH /api/parking/slots/:id/statusGET /api/parking/slots/nearestPOST /api/parking/slots/seed
POST /api/bookingsGET /api/bookingsGET /api/bookings/admin/allGET /api/bookings/:idGET /api/bookings/:id/receiptPOST /api/bookings/entryPOST /api/bookings/exitPATCH /api/bookings/:id/cancel
POST /api/pricing/calculateGET /api/pricing/peak-hoursPUT /api/pricing/peak-hours
POST /api/payments/initiatePOST /api/payments/retry/:idGET /api/payments/booking/:idGET /api/payments/admin/revenue
Copyright © 2026 Sai Sri Ram Vanama. All rights reserved.
Author: Sai Sri Ram Vanama
LinkedIn: saisriramv
This repository is for personal and authorized use only. Do not copy, redistribute, or reuse this project or its code without permission from the author.
MIT License applies only if the repository also includes and retains the MIT license file and terms.