├── .circleci └── config.yml ├── .gitignore ├── .python-version ├── docker-compose.yml ├── presentation ├── images │ ├── circleci.png │ ├── docker-logo.jpg │ ├── fig.png │ ├── figup.png │ ├── heart.jpg │ ├── holy-grail.jpg │ ├── oh-my.jpg │ ├── rp_logo_color_small.png │ └── steps.jpg └── presentation.md ├── readme.md └── web ├── Dockerfile ├── app.py ├── requirements.txt └── tests.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/fitter-happier-docker/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .DS_Store 3 | env 4 | -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 2.7.8 2 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/fitter-happier-docker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /presentation/images/circleci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/fitter-happier-docker/HEAD/presentation/images/circleci.png -------------------------------------------------------------------------------- /presentation/images/docker-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/fitter-happier-docker/HEAD/presentation/images/docker-logo.jpg -------------------------------------------------------------------------------- /presentation/images/fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/fitter-happier-docker/HEAD/presentation/images/fig.png -------------------------------------------------------------------------------- /presentation/images/figup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/fitter-happier-docker/HEAD/presentation/images/figup.png -------------------------------------------------------------------------------- /presentation/images/heart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/fitter-happier-docker/HEAD/presentation/images/heart.jpg -------------------------------------------------------------------------------- /presentation/images/holy-grail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/fitter-happier-docker/HEAD/presentation/images/holy-grail.jpg -------------------------------------------------------------------------------- /presentation/images/oh-my.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/fitter-happier-docker/HEAD/presentation/images/oh-my.jpg -------------------------------------------------------------------------------- /presentation/images/rp_logo_color_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/fitter-happier-docker/HEAD/presentation/images/rp_logo_color_small.png -------------------------------------------------------------------------------- /presentation/images/steps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/fitter-happier-docker/HEAD/presentation/images/steps.jpg -------------------------------------------------------------------------------- /presentation/presentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/fitter-happier-docker/HEAD/presentation/presentation.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/fitter-happier-docker/HEAD/readme.md -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/fitter-happier-docker/HEAD/web/Dockerfile -------------------------------------------------------------------------------- /web/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/fitter-happier-docker/HEAD/web/app.py -------------------------------------------------------------------------------- /web/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | redis 3 | -------------------------------------------------------------------------------- /web/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/fitter-happier-docker/HEAD/web/tests.py --------------------------------------------------------------------------------