-
Create new project on Github. Do not initialize with a Readme, gitignore, or a License.
-
Make a directory on your local machine for the project.
-
Copy all files from this template into the project directory.
cp -r c8-grunt-template/ new-project
-
Delete the
.git
directory in the new-project that was copied in the prior step.rm -rf new-project/.git
-
npm init
andbower init
-
Add npm dependencies to the
package.json
file and then runnpm install
"devDependencies": { "grunt": "^0.4.5", "grunt-contrib-clean": "^0.6.0", "grunt-contrib-connect": "^0.9.0", "grunt-contrib-copy": "^0.7.0", "grunt-contrib-jade": "^0.14.0", "grunt-contrib-watch": "^0.6.1", "grunt-sass": "^0.17.0", "load-grunt-tasks": "^2.0.0" }
-
Install and save any bower dependencies to your project
bower install angular jquery bootstrap --save
-
Run
grunt serve
to load the web server
This repository has been archived by the owner on Jul 15, 2019. It is now read-only.