Now by one click you can get your html project skeleton. You just need to run the shell script in your operating system
Follow the instructions. It's quite easy!
- Unzip the file after downloding from git. You will get a script which called setProject.sh . You have to run this file.
- Open your linux command prompt by using Ctrl+Alt+t
- At first you have to provide proper permission for the shell script. Type chmod 700 ./setProject.sh . By this command the file will get only user permission to read, write and execute.
- To run the script type in your command prompt ./setProject.sh projectFolderName.
- Here projectFolderName means the directory name which need to select by you.
- If you run the above command you will get a html template skeleton which will contain index.html file and some neccessary directories as like css, scripts, images, lib. In css directory you will get a style.css file to write css code for the template.In scripts directory you will get script.js file to write JavaScript code for your template.
- If you want to get bootstrap template then you need to run ./setProject.sh projectFolderName bootstrap instead of above command. Here you just need to change projectFolderName.
- Suppose you want to get a directory which is called demoProject. Then you need to type ./setProject.sh demoProject bootstrap (to get skeleton with bootstrap) or ./setProject.sh demoProject (to get skeleton without bootstrap)