https://github.com/paujim/human-approval-process
For a process that requires human interaction
https://github.com/paujim/human-approval-process
aws cdk cdk-examples lambda ses step-functions
Last synced: 3 months ago
JSON representation
For a process that requires human interaction
- Host: GitHub
- URL: https://github.com/paujim/human-approval-process
- Owner: paujim
- License: mit
- Created: 2020-05-30T22:22:42.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-29T20:19:36.000Z (almost 5 years ago)
- Last Synced: 2025-01-29T18:46:44.294Z (5 months ago)
- Topics: aws, cdk, cdk-examples, lambda, ses, step-functions
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Human approval process!
To run this project you need to be able to receive email via SES
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
```