A small OLX-like application where users can register, log in, and perform CRUD operations (Create, Read, Update, Delete) on products. Built with Flutter (frontend) and Node.js + Express + MongoDB (backend)
git clone https://github.com/KashishShakya/Mini-OLX
cd Mini-OLX>
cd backend
npm install
PORT=5000
MONGO_URI & JWT_SECRET
cd frontend
flutter pub get
In product_service.dart or auth_service.dart, make sure base URL matches the backend:
final String baseUrl = 'http://10.0.2.2:5000'; // for Android emulator
// or
final String baseUrl = 'http://localhost:5000'; // for web/desktop
flutter run