In order to launch the theme you will need to generate the assets folder from src folder by installing and running the build tools in command line.
The steps below for the Default jQuery Package.
If you want to use the Webpack, go to this Webpack Quick Start section.
-
Download the latest theme source from the marketplace.
-
Download and install Node.js from nodejs.org/en/download/. The suggested version to install is
14.15.x LTS. -
Start command prompt window or terminal and change directory to
[keen]/theme/tools/cd theme/tools -
Install the latest npm.
npm install --global npm@latest -
Install yarn via the npm.
npm install --global yarnDon't forget to run
yarn upgradeafter every Keen updates released in order to install newly added or updated 3rd-party plugins.
Usenpm cache clean --forcecommand, if installation had failed at any step. Retry from start after it done. -
Gulp is a toolkit that helps you automate your time-consuming tasks in development workflow. To install gulp globally.
npm install --global gulp-cliIf you have previously installed a version of
gulpglobally, remove it to make sure old version doesn't collide with newgulp-cli.npm rm --global gulpVerify that gulp in successfully installed, and version of installed gulp will appear.
gulp --version -
Install yarn dependencies. Must execute in
[keen]/theme/tools/folder.yarn -
This below command will compile all the assets(sass, js, media) to
[keen]/theme/[demo]/dist/assetsfolder. State which demo to compile and append at the of the command. Eg.--demo1gulp --demo1If you had any error at this step during compilation. Try to update
gulpto the latest version.npm install --global gulp-cli -
Start the localhost server.
gulp localhost --demo1Keep the console open. Open this link to run
http://localhost:8080/. It will take a few seconds for the build to finish.Press
Ctrl+Cto quit from localhost.
For more information about the Gulp build tool, click here.
