This is a simple web application that enables clients to order pizza from the available menu
The application can be found at the url below:
here
first clone the repository
git clone https://github.com/Dickens-odera/Yummy-Pizza-Test.gitChange the directory to the clone path
cd Yummy-Pizza-Testthen install the packages with composer
composer installGenerate app key
php artisan key:generateMake a copy of the .env.exaple and create a database in your db server
cp .env.example .envAt the Created .env file add the follwing:
DB_PORT=3306DB_DATABASE=
DB_USERNAME=root
Run the database migrations to create the tables
php artisan migratenpm install
Open your terminal and type the following command:
php artisan serveFor the frontend scafolding run the following command:
npm run watch
Run the following command in your terminal
./vendor/bin/phpunit