git clone https://github.com/your-org/shop-manager.git
cd shop-manager
composer install
npm install
cp .env.example .env
php artisan key:generate
Edit .env with your database credentials:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=shop_manager
DB_USERNAME=root
DB_PASSWORD=
php artisan migrate
php artisan db:seed
php artisan storage:link
npm run build
php artisan serve
Visit http://localhost:8000 in your browser.
For production, configure your web server to point to the public/ directory. Ensure the following directories are writable:
storage/bootstrap/cache/public/uploads/php artisan config:cache
php artisan route:cache
php artisan view:cache
php artisan optimize