Open command prompt in the project directory and run:
composer install
npm install
1. Copy .env.example to .env
copy .env.example .env
2. Edit .env and set your database credentials:
DB_DATABASE=inventino
DB_USERNAME=root
DB_PASSWORD=
php artisan key:generate
Create a MySQL database named inventino using phpMyAdmin or command line:
CREATE DATABASE inventino;
This creates all tables and default data:
php artisan migrate --seed
For development:
npm run dev
Or for production:
npm run build
⚠️ Change these credentials immediately after first login!
For complete documentation, see README.md in the project root.
If you encounter errors:
php artisan cache:clear
php artisan config:clear
composer dump-autoload
Check the README.md file for detailed documentation and troubleshooting guide.
INVENTINO - Inventory & Sales Management System
Built with Laravel 11 & Vue 3