Repo for the guide to coding project
This project utilizes Build Automation with Gulp and also Sass as a PreProcessor. So you'll need to have Node.js, Git and Sass installed.
Project setup is pretty easy:
- Install Node.js, Sass and Git.
- Install Gulp using
npm install -g gulp. You may/or not need to usesudoin front of the Gulp install command to give it permissions. - Run
npm installto install project dependencies. That should install all dependencies in thepackage.jsonfile. - Run
gulpon your Terminal inside your project directory to serve/launch the project from theappfolder.
File Structure is divided into two. The app folder and src folder.
- The
srcfolder contains the JS and Sass files we'll be editing. - The
appfolder contains the HTML files/pages and assets for the folder. It also contains the auto compiled CSS and JS files as well as external resources like images and plugins, if any.