GitXplorerGitXplorer
a

copilot-cli

public
3573 stars
424 forks
588 issues

Commits

List of commits on branch mainline.
Verified
949daed1e1f38c9b09a0b15fc3b895364c1cb153

chore: Update README.md (#5975)

bbkaws committed 2 months ago
Verified
c31825ab1b49294fc4e63c444addaac729b2d898

chore: Update README.md (#5974)

bbkaws committed 2 months ago
Verified
0478d1ea6f9f7bebd33151097984fef0c286cafd

chore: Remove feature request issue templates (#5972)

bbkaws committed 2 months ago
Verified
b1c4c42cf1c47793a8181314a732312f3e3df1a7

chore: Bump golang.org/x/term from 0.24.0 to 0.25.0 (#5948)

ddependabot[bot] committed 3 months ago
Verified
aa18bd738141aea8d25c954635d3b91d74925d35

chore: Bump golang.org/x/text from 0.18.0 to 0.19.0 (#5947)

ddependabot[bot] committed 3 months ago
Verified
656aceaf47e91b241ae76abe6bd68ddeb4622b1f

chore: remove excessive validation for fargate spot for ARM (#5943)

iiamhopaul123 committed 4 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.