Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dickens-odera/yummy-pizza-test
A web application that enables clients to order pizzas with shopping cart
https://github.com/dickens-odera/yummy-pizza-test
api laravel pizzastore reactjs shopping-cart
Last synced: about 2 months ago
JSON representation
A web application that enables clients to order pizzas with shopping cart
- Host: GitHub
- URL: https://github.com/dickens-odera/yummy-pizza-test
- Owner: Dickens-odera
- Created: 2020-05-22T17:04:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T06:41:39.000Z (almost 2 years ago)
- Last Synced: 2023-03-05T08:38:30.720Z (almost 2 years ago)
- Topics: api, laravel, pizzastore, reactjs, shopping-cart
- Language: PHP
- Homepage: https://yummy-pizza-store.herokuapp.com/
- Size: 3.06 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Yummy Pizza Test
---## Overview
This is a simple web application that enables clients to order pizza from the available menu### Url
The application can be found at the url below:
[here](https://yummy-pizza-store.herokuapp.com)
#### Installation (Backend)
first clone the repository
```php
git clone https://github.com/Dickens-odera/Yummy-Pizza-Test.git
```
Change the directory to the clone path
```php
cd Yummy-Pizza-Test
```
then install the packages with composer
```php
composer install
```
Generate app key
```php
php artisan key:generate
```
Make a copy of the .env.exaple and create a database in your db server
```php
cp .env.example .env
```At the Created .env file add the follwing:
DB_PORT=3306
DB_DATABASE=
DB_USERNAME=root
Run the database migrations to create the tables
```php
php artisan migrate
```### Installation (Frontend)
npm install
## Run the app (Backend)
Open your terminal and type the following command:
```php
php artisan serve
```
## Run the app (Frontend)
For the frontend scafolding run the following command:npm run watch
### Feature Testing
Run the following command in your terminal
```php
./vendor/bin/phpunit
```