GitXplorerGitXplorer
a

copilot-cli

public
3573 stars
424 forks
588 issues

Commits

List of commits on branch mainline.
Verified
b8690a34d1352229167801dfa9b4fa48d38afdf1

chore: Bump fast-xml-parser, @aws-sdk/client-acm, @aws-sdk/client-apprunner, @aws-sdk/client-cloudformation, @aws-sdk/client-ecs, @aws-sdk/client-elastic-load-balancing-v2, @aws-sdk/client-resource-groups-tagging-api, @aws-sdk/client-route-53, @aws-sdk/client-s3, @aws-sdk/client-sfn, @aws-sdk/client-sqs and @aws-sdk/credential-providers in /cf-custom-resources (#5913)

ddependabot[bot] committed 5 months ago
Verified
3f348acb9cbd09be83f7766a84757ca45c565d76

chore: Bump github.com/onsi/ginkgo/v2 from 2.19.0 to 2.20.0 (#5912)

ddependabot[bot] committed 5 months ago
Verified
c945d782d1b489664ddd0a3a234ddc0283755140

chore: Bump github.com/onsi/gomega from 1.33.1 to 1.34.1 (#5899)

ddependabot[bot] committed 5 months ago
Verified
1e8720699479bd43ed8808f50616c6dc469819cb

chore: Bump golang.org/x/text from 0.16.0 to 0.17.0 (#5910)

ddependabot[bot] committed 5 months ago
Verified
86c704f31095f50977cc356c81e90909fe1b4d58

chore: Bump github.com/docker/docker from 25.0.5+incompatible to 25.0.6+incompatible (#5895)

ddependabot[bot] committed 5 months ago
Verified
f4065adf7dc0c9e7802f751b7a2cecf3403ce880

chore: Bump github.com/aws/aws-sdk-go from 1.54.15 to 1.55.5 (#5898)

ddependabot[bot] committed 5 months ago

README

The README file for this repository.

AWS Copilot CLI AWS Copilot CLI

Build, Release and Operate Containerized Applications on AWS.

latest version Join the chat at https://gitter.im/aws/copilot-cli

The AWS Copilot CLI is a tool for developers to build, release and operate production-ready containerized applications on AWS App Runner or Amazon ECS on AWS Fargate.

Use Copilot to:

  • Deploy production-ready, scalable services on AWS from a Dockerfile in one command.
  • Add databases or inject secrets to your services.
  • Grow from one microservice to a collection of related microservices in an application.
  • Set up test and production environments, across regions and accounts.
  • Set up CI/CD pipelines to release your services to your environments.
  • Monitor and debug your services from your terminal.

init

Installation

To install with homebrew:

$ brew install aws/tap/copilot-cli

To install manually, we're distributing binaries from our GitHub releases:

Instructions for installing Copilot for your platform
Platform Command to install
macOS curl -Lo copilot https://github.com/aws/copilot-cli/releases/latest/download/copilot-darwin && chmod +x copilot && sudo mv copilot /usr/local/bin/copilot && copilot --help
Linux x86 (64-bit) curl -Lo copilot https://github.com/aws/copilot-cli/releases/latest/download/copilot-linux && chmod +x copilot && sudo mv copilot /usr/local/bin/copilot && copilot --help
Linux (ARM) curl -Lo copilot https://github.com/aws/copilot-cli/releases/latest/download/copilot-linux-arm64 && chmod +x copilot && sudo mv copilot /usr/local/bin/copilot && copilot --help
Windows Invoke-WebRequest -OutFile 'C:\Program Files\copilot.exe' https://github.com/aws/copilot-cli/releases/latest/download/copilot-windows.exe

Getting started

Make sure you have the AWS command line tool installed and have already run aws configure before you start.

To get a sample app up and running in one command, run the following:

$ git clone git@github.com:aws-samples/aws-copilot-sample-service.git demo-app
$ cd demo-app
$ copilot init --app demo                \
  --name api                             \
  --type 'Load Balanced Web Service'     \
  --dockerfile './Dockerfile'            \
  --deploy

This will create a VPC, Application Load Balancer, an Amazon ECS Service with the sample app running on AWS Fargate. This process will take around 8 minutes to complete - at which point you'll get a URL for your sample app running! 🚀

Learning more

Want to learn more about what's happening? Check out our documentation https://aws.github.io/copilot-cli/ for a getting started guide, learning about Copilot concepts, and a breakdown of our commands.

Feedback

Have any feedback at all? 🙏 Drop us an issue or join us on gitter.

We're happy to hear feedback or answer questions, so reach out, anytime!

Security disclosures

If you think you’ve found a potential security issue, please do not post it in the Issues. Instead, please follow the instructions here or email AWS security directly at aws-security@amazon.com.

License

This library is licensed under the Apache 2.0 License.