| |This repo is courtesy of The HYIP Project. Find all of them on The Project Map.|
|
|:----|----|----:|{|
Information Flow System
This project section is running on Amazon Web Service (AWS) using AWS CodeDeploy:
https://console.aws.amazon.com/codedeploy/
The following diagram illustrates the flow of a typical AWS CodeDeploy deployment:
Create Command:
aws deploy create-deployment \
--application-name CodeDeployGitHubDemo-App \
--deployment-config-name CodeDeployDefault.OneAtATime \
--deployment-group-name CodeDeployGitHubDemo-DepGrp \
--description "My GitHub deployment demo" \
--github-location repository=repository,commitId=commitId
Push Command:
aws deploy push \
--application-name WordPress_App \
--description "This is a revision for the application WordPress_App" \
--ignore-hidden-files \
--s3-location s3://codedeploydemobucket/WordPressApp.zip \
--source .
Important Checklist:
- Install, Uninstall, or Reinstall the AWS CodeDeploy Agent
- Add an AppSpec File and AppSpec File Reference
- Deploy a Revision and GitHub Authentication
- Create a Service Role and Setting Up
- General Troubleshooting
Let’s trigger a deployment from your GitHub repository using the AWS Management Console. You can also configure CodeDeploy to pull the application bundle directly from the GitHub repository, rather than from Amazon S3, here is the resources:
- Using AWS CodeDeploy to Deploy an Application from GitHub
- Automatically Deploy from GitHub Using AWS CodeDeploy
- Wercker, Shipyard, Semaphoreci and others
- Jenkins and Setup Credentials
- AWS CodeDeploy forum
- Solution appspec.yml
Next |
---|