├── .Dockerignore ├── .gitignore ├── .travis.yml ├── Dockerfile ├── Pipfile ├── Pipfile.lock ├── README.md ├── deploy_to_aws.py ├── microservice ├── __init__.py └── api.py └── tests └── test_microservice.py /.Dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexIoannides/py-docker-aws-example-project/HEAD/.Dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | .aws_credentials.json 3 | __pycache__/ 4 | test.rest 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexIoannides/py-docker-aws-example-project/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexIoannides/py-docker-aws-example-project/HEAD/Dockerfile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexIoannides/py-docker-aws-example-project/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexIoannides/py-docker-aws-example-project/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexIoannides/py-docker-aws-example-project/HEAD/README.md -------------------------------------------------------------------------------- /deploy_to_aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexIoannides/py-docker-aws-example-project/HEAD/deploy_to_aws.py -------------------------------------------------------------------------------- /microservice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexIoannides/py-docker-aws-example-project/HEAD/microservice/api.py -------------------------------------------------------------------------------- /tests/test_microservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexIoannides/py-docker-aws-example-project/HEAD/tests/test_microservice.py --------------------------------------------------------------------------------