-
Notifications
You must be signed in to change notification settings - Fork 4
Installation process
To have the latest version of the theme you can clone the repo directlywhere you plan to start to work:
git clone git@github.com:moxienyc/Lean.git .Or you can download the latest release from the releases page.
Once you have the files you need to be on the theme path or theme directory, then you need to install the node, composer and bower dependencies in order to execute some utilities. You need to run
the following command from your terminal in the theme path:
./bin/install.shNote: Make sure to use the dot before the /bin/ directory to execute the file inside of the theme bin directory
You are going to be prompt you can reply with 1 or 0, where:
-
1is yes -
0means no.
If you have any problem to run this shell script, try by copy and paste the following commands in your terminal if the command above does not work.
npm install && bower install && curl -sS https://getcomposer.org/installer | php && php composer.phar install && php composer.phar update && gulp js && gulp stylesThose commands are going to install the required dependencies of the theme to allow other tools work properly (like gulp).