Quick Start

1. Requirements

System Requirements:
Server
  • Make sure to have the Xampp OR Wamp installed & running in your computer.
  • If you already have installed Xampp / Wamp server on your computer, you can skip this step. Note: Minimum PHP 7.4 or higher version.
Composer
  • Make sure to have the Composer installed & running in your computer. If you already have installed composer on your computer, you can skip this step.

2. Install

To initiate the process, access the Admin folder and proceed to install its dependencies using terminal. We recommend utilizing either npm for this task.

This would install all the required packages in the vendor folder.
composer install
                    
Run the below commands to install dependencies and compile the assets:
npm install
npm run build  // this is to generate the build of assets for production.

3. Start

Run the project locally. The development server is accessible at http://localhost:8080/:
php spark serve
                
If you wish to run the project locally on Different Port. The development server is accessible at http://localhost:8001/:
php spark serve --port 8081