Welcome to the Flame and Crust Pizzaria restaurant management system! 🚀
The Flame and Crust Pizzaria is a comprehensive Restaurant Management System (RMS) designed to streamline daily restaurant operations. This system helps manage inventory, orders, reservations, customer interactions, and employee roles efficiently. It ensures smooth coordination between the kitchen, front desk, and customers while enhancing the overall dining experience.
This guide will help you set up the project on your local machine without running migrations so you can start working quickly. Let's build something amazing together! 💪
Before cloning the project, ensure you have the following installed:
After installing these, restart your terminal or command prompt to apply changes.
git clone your-repo-url.gitReplace your-repo-url.git with the actual repository URL.
Navigate into the project directory:
cd your-project-directoryRun:
composer updateRun:
npm updateCopy the example environment file and rename it to .env:
cp .env.example .envUse the following application key:
APP_KEY=your-app-key-hereReplace your-app-key-here with the actual key provided.
To run the Laravel application locally without database migrations, use:
php artisan serveThis will start the application at http://127.0.0.1:8000.
Before making any changes, always pull the latest updates to stay in sync:
git pull origin mainBefore making changes, create a new branch:
git checkout -b feature-branch-nameReplace feature-branch-name with something relevant to your changes.
After making updates, push your branch:
git add .
git commit -m "Your message here"
git push origin feature-branch-nameOnce your changes are reviewed, switch to the main branch and merge:
git checkout main
git pull origin main
git merge feature-branch-nameThen push the updated main branch:
git push origin mainRemember, every great project starts with a small step. If you face any challenges, ask for help—teamwork makes the dream work! 🚀 Let's build something awesome together! 🎉