├── LICENSE ├── Procfile ├── README.md ├── helloworld ├── main.py ├── templates │ └── index.html └── wsgi.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-flask/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn helloworld.wsgi -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-flask/HEAD/README.md -------------------------------------------------------------------------------- /helloworld/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-flask/HEAD/helloworld/main.py -------------------------------------------------------------------------------- /helloworld/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-flask/HEAD/helloworld/templates/index.html -------------------------------------------------------------------------------- /helloworld/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-flask/HEAD/helloworld/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-flask/HEAD/requirements.txt --------------------------------------------------------------------------------