├── .gitignore ├── Dockerfile ├── README.md ├── api ├── __init__.py └── products.py ├── app.py ├── docker-compose.yml ├── providers └── CouchProvider.py ├── requirements.txt └── swagger └── couch-service-docs.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | my_venv_dir/ 3 | .cache 4 | .DS_Store 5 | *.pyc 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-Gordon/flask-couch-microservice/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-Gordon/flask-couch-microservice/HEAD/README.md -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | from api.products import * -------------------------------------------------------------------------------- /api/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-Gordon/flask-couch-microservice/HEAD/api/products.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-Gordon/flask-couch-microservice/HEAD/app.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-Gordon/flask-couch-microservice/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /providers/CouchProvider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-Gordon/flask-couch-microservice/HEAD/providers/CouchProvider.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-Gordon/flask-couch-microservice/HEAD/requirements.txt -------------------------------------------------------------------------------- /swagger/couch-service-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-Gordon/flask-couch-microservice/HEAD/swagger/couch-service-docs.yaml --------------------------------------------------------------------------------