Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 1.14 KB

README.md

File metadata and controls

46 lines (29 loc) · 1.14 KB

How to deploy the AWS Lambda Power Tuning using the CDK for Python

This CDK project deploys AWS Lambda Power Tuning using Python.

You can use the project as a standalone or reuse it within your own CDK projects.

CDK Prerequisites

See here.

Language specific prerequisites

Virtualenv setup and requirements

To manually create a virtualenv on MacOS and Linux:

$ python -m venv .venv

After the init process completes and the virtualenv is created, you can use the following step to activate your virtualenv.

$ source .venv/bin/activate

If you are on Windows platform, you would activate the virtualenv like this:

% .venv\Scripts\activate.bat

Once the virtualenv is activated, you can install the required dependencies.

$ pip install -r requirements.txt

Building, testing, and deploying the app

  • pytest test this app
  • cdk deploy deploy this app