Simple as gulp deploy
This gist contains everything you need to start deploying your static site to Amazon S3.
We're using gulp as a task runner, and the run-wintersmith and gulp-s3 packages to build the site, and deploy to S3. This deploy task is very simple, and does not handle common taks like concatenation, minification, compressing images, or generating hashes of assets.
- Add
package.json,aws.json, andGulpfile.jsto the root of your wintersmith site. - Modify
aws.jsonwith your key, secret, bucketname(with the www), and region. - Run
npm installto get gulp, and the s3 library.
- Run
gulp deployto build your site, and push it to S3. - Enjoy.