Kar
Kar

Reputation: 6365

Continuous deployment in EC2 using Codeship

It's my first time trying to do deployment. I'm using Codeship for deploy a Python project in AWS EC2. I have setup a git repository on Bitbucket, but I'm not sure how to deploy to EC2. It seems to support S3 (perhaps to upload packages to S3), but doesn't seem to indicate what to do with EC2. Should I write a 'Custom script' that simply calls git remote ... and git push? Here's the screen I'm seeing.

enter image description here

Please help me out with this.

Upvotes: 3

Views: 1165

Answers (1)

Jrgns
Jrgns

Reputation: 25207

This blog post should give you an idea on how to do what you want:

https://blog.codeship.com/aws-codedeploy-codeship/

It uses the CodeDeploy service from AWS, and automates the creation of a deployment artifact on S3 for you.

Upvotes: 0

Related Questions