Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kyleconrad/portfolio-spring-2014

Static build of kyleconrad.com (2014).
https://github.com/kyleconrad/portfolio-spring-2014

Last synced: about 2 months ago
JSON representation

Static build of kyleconrad.com (2014).

Awesome Lists containing this project

README

        

Static build of kyleconrad.com with Gulp.js as the build system, SASS and Bourbon for mix-ins and handy CSS pre-processing, and other assorted tools for compression and launch.

## Local Setup
Running local set up will install all necessary bundles and dependencies and then run a server with BrowserSync. It watches all SASS, JS, and images, then compiles and reloads accordingly.

$ npm install -g gulp
$ cd Spring\ 2014\ Design
$ npm install
$ bundle install
$ gulp

## Building
Building will remove all files from the 'dist' directory, compile and minify all SASS/CSS, concat and uglify all JS, minify all images, and process and copy all HTML. This will result with the entire site ready in the 'dist' directory upon completion.

$ cd Spring\ 2014\ Design
$ gulp build

## Deploying
Deployment uses rsync to ensure that the live server is synced with the latest files from the 'dist' directory. Ensure that the latest updates have been built before attempting to deploy.

$ cd Spring\ 2014\ Design
$ gulp build
$ gulp deploy