Use the following commands in your vagrant development environment to get this up and running
git clone https://github.com/uiuc-web-programming/mp1_starter.git
cd mp1_starter
npm install
bower install
gulp build
After this setup, you can run:
gulp
For MP1, you should edit the following:
public/index.html
- this html file is served by default. You are going to change this for your MP.source_sass
folder - all sass files here will be compiled topublic/css/styles.css
source_js
folder - all javascript files here will be uglified and put inpublic/js/script.js
public/media
- all your media files (images, videos, GIFs etc. ) go here. Use relative path to access these from your HTML files.
Do not edit anything under the public\css
and public\js
folders. All things there are auto-generated and any changes you make there will get overwritten by Gulp.