https://github.com/verma-kunal/cloud-deployment-automation
AWS Deployment Automation using Jenkins CI
https://github.com/verma-kunal/cloud-deployment-automation
aws aws-ec2 docker jenkins
Last synced: 8 months ago
JSON representation
AWS Deployment Automation using Jenkins CI
- Host: GitHub
- URL: https://github.com/verma-kunal/cloud-deployment-automation
- Owner: verma-kunal
- License: mit
- Created: 2022-11-03T16:21:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-13T06:24:16.000Z (almost 3 years ago)
- Last Synced: 2025-04-12T01:44:37.860Z (about 1 year ago)
- Topics: aws, aws-ec2, docker, jenkins
- Language: HTML
- Homepage:
- Size: 38 MB
- Stars: 23
- Watchers: 3
- Forks: 33
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Deployment automation on AWS using Jenkins CI/CD

## Testing the project locally
1. Clone this project
```
git clone https://github.com/verma-kunal/AWS-Session.git
```
2. Setup the following environment variables - `(.env)` file
```
DOMAIN= "http://IP_ADDRESS:3000"
PORT=3000
STATIC_DIR="./client"
PUBLISHABLE_KEY="TEST_STRIPE_PUBLIC_API_KEY"
SECRET_KEY="TEST_STRIPE_SECRET_API_KEY"
```
> Follow the steps mentioned in the [guide](https://stripe.com/docs/keys) to get your Stripe API keys for testing purposes.
3. Initialise and start the project
```
npm install
npm run start
```
## Tutorial
A detailed guide on how to build this project can be in the [blog post](https://kverma.hashnode.dev/aws-cloud-deployment-automation-with-jenkins-ci).