├── .gitignore ├── Dockerfile ├── app.py ├── requirements.txt └── templates └── hello.html /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | .idea -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodekloudhub/webapp-color/HEAD/Dockerfile -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodekloudhub/webapp-color/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask -------------------------------------------------------------------------------- /templates/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodekloudhub/webapp-color/HEAD/templates/hello.html --------------------------------------------------------------------------------