Skip to content

Latest commit

 

History

History
85 lines (55 loc) · 2.38 KB

README.md

File metadata and controls

85 lines (55 loc) · 2.38 KB

Screenshots

Homepage

Destination Info and Cart Page

Place Order

Checkout

Stripe Backend

Blog

Backend

ToursTravel is a group project for Application Programming for the Internet unit developed entirely with laravel.

Setting up the project locally;

  1. git clone https://github.com/muchaisam/Tours-Travel

change directory to the project 2. cd Tours-Travel

Install composer dependencies

  1. composer Install

Install npm dependencies

  1. npm install

  2. npm run dev

Create a copy of the .env file

  1. cp .env.example .env

Generate the app's encryption key

  1. php artisan key:generate

Create an empty database for the application

After this, in the .env file, add database information to allow Laravel to connect to the database

  1. In the .env file fill in the DB_HOST, DB_PORT, DB_DATABASE, DB_USERNAME, and DB_PASSWORD options to match the credentials of the database you just created.

Migrate and seed the database

  1. php artisan migrate | php artisan db:seed

Run the application

  1. php artisan serve