git clone https://github.com/alaminwebdev/invexa-inventory-system.git
cd invexa-inventory-system
# Copy environment file
cp .env.example .env
# Update database configuration in .env
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=invexa
DB_USERNAME=root
DB_PASSWORD=
php artisan key:generate
# PHP dependencies
composer install
# Node.js dependencies
npm install
# Run migrations
php artisan migrate
# Seed the database
php artisan db:seed
# Start Laravel development server
php artisan serve
# Start Vite for assets (in a new terminal)
npm run dev
email - admin@example.com
password - 123456
