Use the following commands in your vagrant development environment to get this up and running
git clone https://github.com/uiuc-web-programming/mp2_starter.git
cd mp2_starter
npm install
bower install
grunt compass:dev
grunt compass:foundation
grunt uglify
gruntFor MP2, you should edit the following:
public/index.html- all files in thepublicfolder will be served by the serversassfolder - all sass files here will be compiled topublic/css/styles.cssjsfolder - all javascript files here will be uglified and put inpublic/js/script.jspublic/lib/foundation/scss- all scss files here will be compiled and put inpublic/lib/foundation/css/foundation.css
Also, if you have problems debugging your JavaScript due to uglification, you can disable it by commenting out line 46 of gruntfile.js and uncommenting line 47. Your final submission should work with uglification though.