Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aws-devops-projects/python-backend-app
We have used this python project to execute CI/CD pipeline using Jenkins on AWS environment with AWS Devops tools
https://github.com/aws-devops-projects/python-backend-app
aws ci-cd-pipeline codebuild-deploy python
Last synced: 6 days ago
JSON representation
We have used this python project to execute CI/CD pipeline using Jenkins on AWS environment with AWS Devops tools
- Host: GitHub
- URL: https://github.com/aws-devops-projects/python-backend-app
- Owner: AWS-Devops-Projects
- Created: 2020-09-20T06:26:01.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-11-01T02:24:50.000Z (13 days ago)
- Last Synced: 2024-11-01T03:21:03.902Z (13 days ago)
- Topics: aws, ci-cd-pipeline, codebuild-deploy, python
- Language: Python
- Homepage:
- Size: 39.1 KB
- Stars: 44
- Watchers: 2
- Forks: 88
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Python Backend App for AWS CI/CD
This sample project is used for demonstrating Jenkins pipeline on AWS environment with AWS devops tools(CodeBuild, S3 Buckets, CodeDeploy)
## appspec.yml
The application specification file (AppSpec file) is a YAML-formatted or JSON-formatted file used by CodeDeploy to manage a deployment. It must be placed in the root of the directory structure of an application's source code.
It is used by CodeDeploy to determine:* What it should install onto instances from Amazon S3 or GitHub repositories.
* Which lifecycle event hooks to run in response to deployment lifecycle events.(basically start and stop scripts of the application)## buildspec.yml
A build spec is a collection of build commands and related settings, in YAML format, that CodeBuild uses to run a build. Buildspec YAML file is included as part of the source code. Self explanatory file performs necessary installations by directly accesing the console of EC2 instance and copy listed artifacts to created directories before the CodeDeploy deployment phase.