Skip to content

Instantly share code, notes, and snippets.

@steveburkett
Created October 22, 2014 22:42
Show Gist options
  • Save steveburkett/ace3e61d79e4ebcdf796 to your computer and use it in GitHub Desktop.
Save steveburkett/ace3e61d79e4ebcdf796 to your computer and use it in GitHub Desktop.
module.exports = function(grunt) {
var deployConfiguration = grunt.file.readYAML("deployment.yml");
var bucket = 'ember-build-dsh';
grunt.initConfig({
autobots: {
distDir: 'dist',
s3: {
accessKeyId: deployConfiguration.s3_access_key_id,
secretAccessKey: deployConfiguration.s3_secret_access_key,
bucket: bucket
},
redis: {
host: deployConfiguration.redis_host,
port: deployConfiguration.redis_port,
password: deployConfiguration.redis_password
}
}
});
grunt.loadNpmTasks('grunt-autobots');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment