Simple shop system for small resellers
NOTE: NOT READY FOR USAGE
- PHP 8.1
- Composer
- Node.js
- NPM
# Clone repo
git clone /~https://github.com/spectronp/shop.git
cd shop
# Install dependencies
composer install
npm install
# Set Laravel key
cp .env.dev .env
php artisan key:generate
# Set database
touch database/database.sqlite
php artisan migrate
# Compile JS
npm run dev # for development
# or
npm run prod # for production
npm test
php artisan test
# Open Cypress with the app on the background
npm run cypr:open
# Run Cypress in CLI with the app on the background
npm run cypr:run
# Launch the app at localhost:8000
php artisan serve