https://github.com/paujim/cognito-appsync
A sample application using cognito and appsync
https://github.com/paujim/cognito-appsync
appsync aws cdk-examples cognito dynamodb
Last synced: 11 months ago
JSON representation
A sample application using cognito and appsync
- Host: GitHub
- URL: https://github.com/paujim/cognito-appsync
- Owner: paujim
- License: mit
- Created: 2020-09-26T20:31:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-28T20:58:15.000Z (over 5 years ago)
- Last Synced: 2025-01-29T18:46:44.455Z (about 1 year ago)
- Topics: appsync, aws, cdk-examples, cognito, dynamodb
- Language: Python
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AppSync with Cognito
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
```
At this point you can now synthesize the CloudFormation template for this code.
```
$ cdk synth
```