# Navigate to business panelopen http://localhost:5173/empresa/panel# Go to Products > Add New# Upload product image# Set price and description# Select category
# Kill process on port 8000 (Linux/Mac)lsof -ti:8000 | xargs kill -9# Kill process on port 5173lsof -ti:5173 | xargs kill -9# Or specify different portsphp artisan serve --port=8001npm run dev -- --port 5174
Database Connection Failed
Verify your database credentials:
# Test MySQL connectionmysql -u root -p# Check if database existsSHOW DATABASES;# Create database if missingCREATE DATABASE back_end;
Update back-end/.env with correct credentials.
Storage Permission Issues
Laravel needs write permissions for storage:
cd back-endchmod -R 775 storage bootstrap/cache# Create storage link for public filesphp artisan storage:link
Now that BeanQuick is running, explore these topics:
Detailed Installation
Learn about production deployment and advanced configuration
Configuration
Configure payment gateways, email, and environment variables
API Documentation
Explore all API endpoints and authentication methods
User Roles
Learn about the architecture and different user roles
Development Environment Only: The quickstart configuration is optimized for local development. For production deployment, follow the Installation Guide for security best practices.
Pro Tip: Use the composer dev command in a dedicated terminal window and keep it running during development. It provides live reload for both frontend and backend changes.