Shiopa is an open source e-commerce web application with a Laravel (PHP) backend.
Framework: Laravel
Packages: Sanctum
- Install xampp
- then go to
xampp\htdocs - fork this repository
- clone the forked repository in the
xampp\htdocsfolder - launch xampp, start apache and mysql modules and go to
localhost/phpmyadmin - create a database and add it to the database in env.example
- copy env.example and name it .env
- open terminal and run
composer install - link to the database with
php artisan storage:link - get the database migrations with
php artisan migrate:fresh - get the database seeds
php artisan seed:db - then run the backend with
php artisan serve