-
Create a virtual environment:
$ python3 -m venv .venv -
Activate the created environment:
$ source .venv/bin/activate -
Upgrade
pip:$ python3 -m pip install --upgrade pip -
Install the requirements:
$ pip install --upgrade -r requirements.txt -
Mark the main package as Sources Root.
-
Install the stack dependencies:
$ python3 install.py -
Try to synthesise the CloudFormation template:
$ cdk synth
-
Install the testing requirements:
$ pip install --upgrade -r requirements-test.txt -
Run all tests in package
tests