Book Image

Grunt Cookbook

By : Jurie-Jan Botha
Book Image

Grunt Cookbook

By: Jurie-Jan Botha

Overview of this book

<p>A web application can quickly turn into a complex orchestration of many smaller components, each one requiring its own bit of maintenance. Grunt allows you to automate all the repetitive tasks required to get everything working together by using JavaScript, the most popular programming language.</p> <p>Grunt Cookbook offers a host of easy-to-follow recipes for automating repetitive tasks in your web application's development, management, and deployment processes. This book will introduce you to methods that can be used to automate basic processes and your favorite tools. By following the recipes, you will soon be comfortable using Grunt to perform a wide array of advanced tasks in a range of different scenarios.</p>
Table of Contents (17 chapters)
Grunt Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Deploying to AWS S3


In this recipe, we'll make use of the aws-s3 (0.12.3) plugin to upload files to an AWS S3 bucket.

This service doesn't provide a CDN setup by default, but can be easily integrated with AWS CloudFront in order to speed up the distribution of the hosted files.

Getting ready

In this example, we'll work with the basic project structure that we created in the Installing Grunt on a project recipe in Chapter 1, Getting Started with Grunt. Be sure to refer to it if you are not yet familiar with its contents.

In addition to the standard project setup, the following recipe will also require the setup of an AWS user with an AWS access key.

Tip

Refer to the following URL for details on how to obtain your AWS security credentials:

http://docs.aws.amazon.com/general/latest/gr/getting-aws-sec-creds.html

A bucket with a name in the [name].myapp format will also need to be created, with [name] being any unique name that you wish to use. The aforementioned user should also have full access granted...