These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
What things you need to install the software.
- Git
- PHP
- Composer
- Laravel CLI
- Node
Clone the git repository on your computer
$ git clone /~https://github.com/bullypb23/pizza-house.git
You can also download the entire repository as a zip file and unpack in on your computer if you do not have git
After cloning the application, you need to install it's dependencies.
$ cd pizza-house
$ composer install
npm install
When you are done with installation, copy the .env.example file to .env
$ cp .env.example .env
Generate application key
$ php artisan key:generate
Generate jwt token key
$ php artisan jwt:secret
Change this environmental variables for database and mail
DB_HOST=remotemysql.com
DB_DATABASE=KRgnXvvPWU
DB_USERNAME=KRgnXvvPWU
DB_PASSWORD=h4N0kKNTYN
MAIL_USERNAME=bb4c5e18183e6f
MAIL_PASSWORD=2de628bc07a6e3
MAIL_FROM_ADDRESS=vladabulatovic6@gmail.com
Config cache
$ php artisan config:cache
Run the application
$ php artisan serve