-
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
-
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.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