Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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).
- Host: GitHub
- URL: https://github.com/kyleconrad/portfolio-spring-2014
- Owner: kyleconrad
- Created: 2014-03-02T21:56:52.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2016-10-04T20:31:55.000Z (over 8 years ago)
- Last Synced: 2024-04-14T22:53:30.372Z (9 months ago)
- Language: HTML
- Homepage: http://kyleconrad.com/
- Size: 33.6 MB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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