https://github.com/neonarray/gulp-codedeploy
Gulp plugin to semi-automate the AWS Code Deploy process
https://github.com/neonarray/gulp-codedeploy
Last synced: about 1 year ago
JSON representation
Gulp plugin to semi-automate the AWS Code Deploy process
- Host: GitHub
- URL: https://github.com/neonarray/gulp-codedeploy
- Owner: NeonArray
- Created: 2016-03-23T15:44:25.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-27T21:03:21.000Z (about 10 years ago)
- Last Synced: 2025-03-25T04:14:52.328Z (about 1 year ago)
- Language: JavaScript
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#gulp-codedeploy
This plugin is designed to be used with Amazon Code Deploy. It works simply by executing command line statements for you.
You will need to have the AWS CLI installed, along with your credentials stored globally, in order
for this plugin to work.
To use, create a gulp task that calls the `deploy` function, passing your source folder and an options object containing your deployment configuration.
gulp.task('deploy', function () {
appName: "AppName",
bucket: "myBucket",
source: 'dist',
subdir: "app-subdirectory",
fileName: "file.zip",
deploymentGroup: "development",
defaultDescription: "A description of the push",
deployConfig: "CodeDeployDefault.OneAtATime"
});