Implemented on the Laravel v10 framework.
Make sure you have the following software installed on your machine:
- PHP (8.1+)
- Composer
- Node.js and npm
- MySQL
Steps to install the project:
- Clone this repository:
git clone https://github.com/taras-koval/mini-shop.git
- Navigate to the project folder:
cd mini-shop
- Copy the
.env.example
file and rename it to.env
- Configure the
.env
file with appropriate database settings for your environment - Install PHP dependencies:
composer install
- Generate a key using the command:
php artisan key:generate
- Run migrations to create the database tables:
php artisan migrate
- Run seeders to fill the database with data
php artisan db:seed
- Start the local server:
php artisan serve
Project is now running at http://localhost:8000