├── .gitignore ├── LICENSE ├── README.md ├── infra ├── app.py ├── cdk.context.json ├── cdk.json ├── requirements.txt └── stacks │ ├── __init__.py │ └── web_api.py └── web-api ├── .chalice └── config.json ├── app.py ├── chalicelib ├── __init__.py ├── dynamodb_users_database.py ├── users.py └── users_database.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpulver/aws-cdk-sam-chalice/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpulver/aws-cdk-sam-chalice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpulver/aws-cdk-sam-chalice/HEAD/README.md -------------------------------------------------------------------------------- /infra/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpulver/aws-cdk-sam-chalice/HEAD/infra/app.py -------------------------------------------------------------------------------- /infra/cdk.context.json: -------------------------------------------------------------------------------- 1 | { 2 | "@aws-cdk/core:enableStackNameDuplicates": "true" 3 | } 4 | -------------------------------------------------------------------------------- /infra/cdk.json: -------------------------------------------------------------------------------- 1 | { 2 | "app": "python app.py" 3 | } 4 | -------------------------------------------------------------------------------- /infra/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpulver/aws-cdk-sam-chalice/HEAD/infra/requirements.txt -------------------------------------------------------------------------------- /infra/stacks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/stacks/web_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpulver/aws-cdk-sam-chalice/HEAD/infra/stacks/web_api.py -------------------------------------------------------------------------------- /web-api/.chalice/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpulver/aws-cdk-sam-chalice/HEAD/web-api/.chalice/config.json -------------------------------------------------------------------------------- /web-api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpulver/aws-cdk-sam-chalice/HEAD/web-api/app.py -------------------------------------------------------------------------------- /web-api/chalicelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web-api/chalicelib/dynamodb_users_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpulver/aws-cdk-sam-chalice/HEAD/web-api/chalicelib/dynamodb_users_database.py -------------------------------------------------------------------------------- /web-api/chalicelib/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpulver/aws-cdk-sam-chalice/HEAD/web-api/chalicelib/users.py -------------------------------------------------------------------------------- /web-api/chalicelib/users_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpulver/aws-cdk-sam-chalice/HEAD/web-api/chalicelib/users_database.py -------------------------------------------------------------------------------- /web-api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpulver/aws-cdk-sam-chalice/HEAD/web-api/requirements.txt --------------------------------------------------------------------------------