Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 780 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 780 Bytes

Sportswear Business Website

This project runs with Laravel version 10.0.

Getting started

Assuming you've already installed on your machine: PHP (>= 8.0.0), Laravel, Composer and Node.js.

# install dependencies
composer install
npm install

# create .env file and generate the application key
cp .env.example .env
php artisan key:generate

# Migrate database
php artisan migrate

# Seed database
php artisan db:seed

Then launch the server:

php artisan serve

The Laravel sample project is now up and running! Access it at http://localhost:8000.