-
Download the latest theme source from the Marketplace.
-
Download and install
Node.jsfrom Nodejs. The suggested version to install is14.16.x LTS. -
Start a command prompt window or terminal and change directory to [unpacked path]:
-
Install the latest
NPM:npm install --global npm@latest -
To install
Composerglobally, download the installer from https://getcomposer.org/download/ Verify that Composer in successfully installed, and version of installed Composer will appear:composer --version -
Install
Composerdependencies.composer install -
Install
NPMdependencies.npm install -
The below command will compile all the assets(sass, js, media) to public folder:
npm run dev -
Copy
.env.examplefile and create duplicate. Usecpcommand for Linux or Max user.cp .env.example .envIf you are using
Windows, usecopyinstead ofcp.copy .env.example .env -
Create a table in MySQL database and fill the database details
DB_DATABASEin.envfile. -
The below command will create tables into database using Laravel migration and seeder.
php artisan migrate:fresh --seed -
Generate your application encryption key:
php artisan key:generate -
Start the localhost server:
php artisan serve
For setup, usage guidance, and all other docs - please consult the Project Wiki.
This boilerplate, much like the Laravel framework is open-source software licensed under the MIT license.