-
For a quick start please check Online documentation page
-
The offline documentation is available within the theme Offline documentation page
-
For any theme related questions please contact our Theme Support
-
Using Metronic in a new project or for a new client? Purchase a new license https://1.envato.market/EA4JP or watch https://youtu.be/HJ3RNhoI24A to find out more information about licenses.
-
Stay tuned for updates via Twitter and Instagram and check our marketplace for more amazing products: Keenthemes Marketplace
Happy coding with Metronic!
-
Download the latest theme source from the Marketplace.
-
Download and install
Node.js
from 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
Composer
globally, download the installer from https://getcomposer.org/download/ Verify that Composer in successfully installed, and version of installed Composer will appear:composer --version
-
Install
Composer
dependencies.composer install
-
Install
NPM
dependencies.npm install
-
The below command will compile all the assets(sass, js, media) to public folder:
npm run dev
-
Copy
.env.example
file and create duplicate. Usecp
command for Linux or Max user.cp .env.example .env
If you are using
Windows
, usecopy
instead ofcp
.copy .env.example .env
-
Create a table in MySQL database and fill the database details
DB_DATABASE
in.env
file. -
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