Getting Started

Accelerate company's development with this astonishing template.
Note:
We recommend our buyer to make one css file & one js file and add that in your page, so whenever the template is updated it does not affect the code that our users are using.
If the buyer is using css then no need to follow below steps. Just go to the html/ltr/index.html and open that file in to the browser for the desired output.
If the buyer is using scss and package manager then we have compilation tool (gulp) which makes it very easy for compilation. The tasks that Gulp is doing for us are mentioned below.
  1. Install Node.js From https://nodejs.org/en/download/
  2. Open command prompt or any other terminal and go to Package path.
  3. Npm is a default package manager for the JavaScript runtime environment Node.js. If it's already installed then update once.
    
    npm install --global npm@latest
    
    

    To check whether node is successfully installed or not

    
    npm --version
    
    
  4. For yarn package manager
    
    npm install --global yarn
    
    

    To check whether yarn is successfully installed or not

    
    yarn --version
    
    
  5. To Automate compilation tasks in our buyer's development workflow, we recommend to use Gulp. To install gulp globally
    
    npm install --global gulp-cli
    
    

    If you have previously installed gulp then remove it.

    
    npm rm --global gulp
    
    

    To check whether yarn is successfully installed or not

    
    gulp --version
    
    
  6. The following command will execute all the assets (JS, SCSS) to the dist folder separately.
    
    gulp
    
    

How to Install npm dependencies?

In your root folder enter the following command to install the project dependencies: npm install, this command will install all the template libraries inside the node_modules folder, after that you need to run this command gulp copy to include dependencies in assets/libs folder.

All Rights Reserved by MaterialPro. Designed and Developed by WrapPixel.