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.git
Change the directory to the clone path
cd Yummy-Pizza-Test
then install the packages with composer
composer install
Generate app key
php artisan key:generate
Make a copy of the .env.exaple and create a database in your db server
cp .env.example .env
At the Created .env file add the follwing:
DB_PORT=3306DB_DATABASE=
DB_USERNAME=root
Run the database migrations to create the tables
php artisan migrate
npm install
Open your terminal and type the following command:
php artisan serve
For the frontend scafolding run the following command:
npm run watch
Run the following command in your terminal
./vendor/bin/phpunit