https://github.com/paujim/cdk-pipeline-example
https://github.com/paujim/cdk-pipeline-example
aws cdk cdk-examples codepipline
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/paujim/cdk-pipeline-example
- Owner: paujim
- License: mit
- Created: 2020-08-22T21:08:24.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-23T00:08:08.000Z (almost 6 years ago)
- Last Synced: 2025-03-24T13:45:56.653Z (over 1 year ago)
- Topics: aws, cdk, cdk-examples, codepipline
- 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
# CDK Pipeline example project!
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
```