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 usesudo
in front of the Gulp install command to give it permissions. - Run
npm install
to install project dependencies. That should install all dependencies in thepackage.json
file. - Run
gulp
on your Terminal inside your project directory to serve/launch the project from theapp
folder.
File Structure is divided into two. The app
folder and src
folder.
- The
src
folder contains the JS and Sass files we'll be editing. - The
app
folder 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.