https://github.com/paujim/codecommit-pull-request
Add a Comment After a Pull Request
https://github.com/paujim/codecommit-pull-request
cdk-examples codebuild codecommit
Last synced: 5 months ago
JSON representation
Add a Comment After a Pull Request
- Host: GitHub
- URL: https://github.com/paujim/codecommit-pull-request
- Owner: paujim
- License: mit
- Created: 2020-10-22T21:53:30.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2020-10-23T21:52:15.000Z (about 5 years ago)
- Last Synced: 2025-01-29T18:46:46.684Z (11 months ago)
- Topics: cdk-examples, codebuild, codecommit
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Codecommit with a pull request validation!
To manually create a virtualenv on MacOS and Linux:
```
$ python -m venv .env
```
After the init process completes and the virtualenv is created, you can use the following
step to activate your virtualenv.
```
$ source .env/bin/activate
```
If you are a Windows platform, you would activate the virtualenv like this:
```
% .env\Scripts\activate.bat
```
Once the virtualenv is activated, you can install the required dependencies.
```
$ pip install -r requirements.txt
```
At this point you can now synthesize the CloudFormation template for this code.
```
$ cdk synth
```