This repo contains the code for lambda functions and cloudformation templates.
Once you have cloned the repo, create a virtual environment in order to work with the project and keep the local libraries installed on your system separate.
In order to create virtual env, install virtualenv library using package manager pip as below:
pip install virtualenv
Once installed, follow the following series of commands to create a virtual environment and activate that environment.
virtualenv <env-name> ## Substitute the name of the environment in place of env-name
.\<env-name>\Scripts\activate ## To activate the virtual environment on windows machine
Once you have activated your virtual environment, Use the package manager pip to install the required libraries.
pip install -r requirement.txt
CGSmith