🚀 INVENTINO Setup Instructions

⚠️ Important: This application requires proper setup before use. Please follow all steps carefully.

📋 Prerequisites

🛠️ Installation Steps

Step 1: Install PHP Dependencies

Open command prompt in the project directory and run:

composer install

Step 2: Install JavaScript Dependencies

npm install

Step 3: Configure Environment

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=

Step 4: Generate Application Key

php artisan key:generate

Step 5: Create Database

Create a MySQL database named inventino using phpMyAdmin or command line:

CREATE DATABASE inventino;

Step 6: Run Migrations & Seeders

This creates all tables and default data:

php artisan migrate --seed

Step 7: Build Frontend Assets

For development:

npm run dev

Or for production:

npm run build

Step 8: Start Development Server

php artisan serve

Visit: http://localhost:8000

✅ Default Login Credentials

⚠️ Change these credentials immediately after first login!

📚 Documentation

For complete documentation, see README.md in the project root.

🆘 Troubleshooting

If you encounter errors:

php artisan cache:clear
php artisan config:clear
composer dump-autoload

📞 Need Help?

Check the README.md file for detailed documentation and troubleshooting guide.


INVENTINO - Inventory & Sales Management System
Built with Laravel 11 & Vue 3