- Download the latest Theme source from ThemeForest.
- Download and install Node.js from nodejs.org/en/download/
- Start command prompt window or terminal and change directory to
[root]/tools/
cd [root]/tools
- Install the latest version of
npm
.npm install --global npm@latest
- Install the latest version of
yarn
.npm install --global yarn
- Install
gulp
.npm install --global gulp-cli
- Install yarn dependencies. Must execute in
[root]/tools/
folder.yarn install
-
Compile scss and javascript using
gulp
. You need to run this command everytime scripts under[root]/src
has been changed. This command must execute in the[root]/tools
folder.gulp
For Angular, run this command to compile the Angular's assets
gulp --angular
- Run Angular application
cd [root]/dist/angular/demo/[demo_id]
npm install
ng serve
- Default static HTML location
cd [root]/dist/demo/[demo_id]