├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── Pipfile ├── README.md ├── VERSION ├── cookiecutter.json ├── pytest.ini ├── renovate.json ├── tests └── test_bake_project.py └── {{cookiecutter.project_slug}} ├── .chalice └── config.json ├── .gitignore ├── README.md ├── app.py ├── bin └── vendor_package.py ├── requirements-tests.txt ├── requirements.txt ├── tests └── test_project.py └── vendor └── .gitkeep /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniebroke/cookiecutter-lambda-function/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniebroke/cookiecutter-lambda-function/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniebroke/cookiecutter-lambda-function/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniebroke/cookiecutter-lambda-function/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniebroke/cookiecutter-lambda-function/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.1.0 -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniebroke/cookiecutter-lambda-function/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniebroke/cookiecutter-lambda-function/HEAD/pytest.ini -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniebroke/cookiecutter-lambda-function/HEAD/renovate.json -------------------------------------------------------------------------------- /tests/test_bake_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniebroke/cookiecutter-lambda-function/HEAD/tests/test_bake_project.py -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/.chalice/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniebroke/cookiecutter-lambda-function/HEAD/{{cookiecutter.project_slug}}/.chalice/config.json -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniebroke/cookiecutter-lambda-function/HEAD/{{cookiecutter.project_slug}}/.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniebroke/cookiecutter-lambda-function/HEAD/{{cookiecutter.project_slug}}/README.md -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniebroke/cookiecutter-lambda-function/HEAD/{{cookiecutter.project_slug}}/app.py -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/bin/vendor_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniebroke/cookiecutter-lambda-function/HEAD/{{cookiecutter.project_slug}}/bin/vendor_package.py -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/requirements-tests.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | pytest==4.4.1 3 | -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/requirements.txt: -------------------------------------------------------------------------------- 1 | chalice==1.8.0 2 | -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/tests/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browniebroke/cookiecutter-lambda-function/HEAD/{{cookiecutter.project_slug}}/tests/test_project.py -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------