Full-stack pizza delivery platform with custom pizza building, order tracking, inventory management, and an advanced admin dashboard.
Key Features • How To Use • How To Contribute • Technologies • License
🌐 Live Demo🔗 crusto-pizza.vercel.app
Admin Credentials
> Email: admin@gmail.com
> Password: Admin@123
-
Custom Pizza Builder - Choose ingredients and build pizzas
-
Order Tracking - Real-time status updates
-
User Accounts - Save preferences and history
-
Secure Payments - Multiple payment options
-
Admin Dashboard - Manage inventory and orders
-
Low Stock Alerts - Email notifications for low ingredients
-
Analytics - Sales reports and insights
-
Dynamic Pricing - Auto-calculate costs and availability
-
Mobile Responsive - Works on all devices
crusto-pizza-delivery-app/
├── client/ # React frontend application
│ ├── public/ # Static assets (favicon, etc.)
│ ├── src/
│ │ ├── components/ # Reusable UI components
│ │ ├── hooks/ # Custom React hooks
│ │ ├── layouts/ # Page layout components (Root, Auth, Dashboard)
│ │ ├── lib/ # Utility functions and helpers
│ │ ├── pages/ # Page components organized by domain
│ │ │ ├── auth/ # Authentication pages
│ │ │ ├── root/ # Customer-facing pages
│ │ │ └── dashboard/ # Admin dashboard pages
│ │ ├── routes/ # React Router configuration
│ │ ├── store/ # Zustand state management stores
│ │ ├── App.tsx # Main app component
│ │ ├── main.tsx # React entry point
│ │ └── global.css # Global styles
│ ├── .env.example # Environment variables template
│ ├── package.json # Frontend dependencies and scripts
│ ├── components.json # Radix UI components configuration
│ ├── vite.config.ts # Vite build configuration
│ └── tsconfig.json # TypeScript configuration
│
├── server/ # Node.js backend application
│ ├── src/
│ │ ├── config/ # Configuration files (DB, Redis, Cloudinary, Razorpay)
│ │ ├── controllers/ # Route handlers and business logic
│ │ ├── jobs/ # Background job system (BullMQ)
│ │ │ ├── processors/ # Job processing logic
│ │ │ ├── queues/ # Job queue definitions
│ │ │ └── workers/ # Worker processes (price, availability)
│ │ ├── middleware/ # Express middleware (auth, upload, etc.)
│ │ ├── models/ # Mongoose schemas and models
│ │ ├── nodemailer/ # Email configuration and templates
│ │ ├── routes/ # API route definitions
│ │ ├── types/ # TypeScript type definitions
│ │ ├── utils/ # Helper functions and utilities
│ │ └── server.ts # Express server entry point
│ ├── .env.example # Environment variables template
│ ├── package.json # Backend dependencies and scripts
│ └── tsconfig.json # TypeScript configuration
├── .gitignore # Git ignore rules
├── LICENSE # Apache 2.0 license
└── README.md # Project documentation
To clone and run this application, you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:
$ git clone https://github.com/kunaldasx/crusto-pizza-delivery-app
$ cd crusto-pizza-delivery-app$ cd client
$ npm install
$ cp .env.example .env # Configure variables
$ npm run dev$ cd server
$ npm install
$ cp .env.example .env # Configure variables
$ npm run dev# Terminal 3
$ cd server
$ npm run dev:price # Price calculations
# Terminal 4
$ cd server
$ npm run dev:availability # Stock management- Clone repo and create a new branch:
$ https://github.com/kunaldasx/crusto-pizza-delivery-app -b name_for_new_branch. - Make changes and test
- Submit Pull Request with comprehensive description of changes
Crusto is an emailware. Meaning, if you liked using this app or it has helped you in any way, I'd like you send me an email at kunaldasx@gmail.com about anything you'd want to say about this software. I'd really appreciate it!
This software uses the following technologies:
- Frontend: React 19 + TypeScript + Vite + TailwindCSS + Radix UI
- Backend: Node.js + Express + TypeScript
- Database: MongoDB (Mongoose ODM)
- State Management: Zustand stores
- Queue System: Redis + BullMQ for background jobs
- Authentication: JWT + bcrypt
- File Storage: Cloudinary
- Payments: Razorpay
- Email: Nodemailer
If you like this project and think it has helped in any way, consider buying me a coffee!
Apache 2.0
🌐 Visit my website →
🖥️ GitHub · 💼 LinkedIn · 🐦 Twitter / X ·

