Overview
The Starter Kit is a reference repository designed to help users learn how to use the Lunar Laravel E-Commerce package. It serves as a classic e-commerce store example. However, it is important to note that this application is not production-ready or complete.
Features
- Reference repository for Lunar Laravel E-Commerce package
- Classic e-commerce store example
- Provides insights on implementing Lunar headless e-commerce for Laravel
Installation
To install the Starter Kit, follow these steps:
- Clone the repository to your local machine:
git clone [repository-url]
- Navigate to the cloned repository folder:
cd [repository-folder]
- Install the required dependencies:
composer install
- Configure the necessary environment variables:
cp .env.example .env
- Generate a new application key:
php artisan key:generate
- Run the database migrations:
php artisan migrate
- Start the development server:
php artisan serve
- Visit
http://localhost:8000in your browser to access the Starter Kit.
Summary
The Starter Kit is a useful reference repository for those looking to learn how to use the Lunar Laravel E-Commerce package. It provides a classic e-commerce store example and insights on implementing Lunar headless e-commerce for Laravel. The installation process involves cloning the repository, installing dependencies, configuring environment variables, running migrations, and starting the development server.