Starter Kits
Introduction
If you want to get up and running quickly to review Lunar, this section is for you.
Livewire Starter Kit
Lunar provides a starter kit as a reference to help you build your own custom e-commerce app. The starter kit is built using Laravel Livewire (as is our admin hub). You can quickly see how to load products, collections, use the cart and checkout.
If you would prefer to install Lunar into your own Laravel application, please follow the installation instructions.
Requirements
- PHP ^8.1
- Laravel 9|10
- MySQL 8.0+ / PostgreSQL 9.2+
- exif PHP extension (on most systems it will be installed by default)
- intl PHP extension (on most systems it will be installed by default)
- bcmath PHP extension (on most systems it will be installed by default)
- GD PHP extension (used for image manipulation)
Installation
Clone the repo
git clone --depth=1 https://github.com/lunarphp/livewire-starter-kit.gitThis will create a shallow clone of the repo, from there you would just need to remove the .git folder and reinitialise it to make it your own.
cd livewire-starter-kit
rm -rf .gitThen install composer dependencies
composer installConfigure the Laravel app
Copy the .env.example file to .env and make sure the details match to your install.
cp .env.example .envAll the relevant configuration files should be present in the repo.
Migrate and seed
Run the migrations
php artisan migrateInstall Lunar
php artisan lunar:installSeed the demo data.
php artisan db:seedLink the storage directory
php artisan storage:linkFinished 🚀
You are now installed!
- You can access the storefront at
http://<yoursite> - You can access the admin hub at
http://<yoursite>/hub
You can review the source code at the GitHub Repository: https://github.com/lunarphp/livewire-starter-kit.