├── .gitignore ├── 01api ├── petstore-api-buildspec.yml ├── petstore-api.yaml └── petstore-swagger.json ├── 02postman ├── PetStoreAPI.postman_collection.json ├── PetStoreAPIEnvironment.postman_environment.json └── update-postman-env-file.sh ├── 03codebuild └── postman-newman-buildspec.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── petstore-api-pipeline.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codepipeline-codebuild-with-postman/HEAD/.gitignore -------------------------------------------------------------------------------- /01api/petstore-api-buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codepipeline-codebuild-with-postman/HEAD/01api/petstore-api-buildspec.yml -------------------------------------------------------------------------------- /01api/petstore-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codepipeline-codebuild-with-postman/HEAD/01api/petstore-api.yaml -------------------------------------------------------------------------------- /01api/petstore-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codepipeline-codebuild-with-postman/HEAD/01api/petstore-swagger.json -------------------------------------------------------------------------------- /02postman/PetStoreAPI.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codepipeline-codebuild-with-postman/HEAD/02postman/PetStoreAPI.postman_collection.json -------------------------------------------------------------------------------- /02postman/PetStoreAPIEnvironment.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codepipeline-codebuild-with-postman/HEAD/02postman/PetStoreAPIEnvironment.postman_environment.json -------------------------------------------------------------------------------- /02postman/update-postman-env-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codepipeline-codebuild-with-postman/HEAD/02postman/update-postman-env-file.sh -------------------------------------------------------------------------------- /03codebuild/postman-newman-buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codepipeline-codebuild-with-postman/HEAD/03codebuild/postman-newman-buildspec.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codepipeline-codebuild-with-postman/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codepipeline-codebuild-with-postman/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codepipeline-codebuild-with-postman/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codepipeline-codebuild-with-postman/HEAD/README.md -------------------------------------------------------------------------------- /petstore-api-pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codepipeline-codebuild-with-postman/HEAD/petstore-api-pipeline.yaml --------------------------------------------------------------------------------