├── .gitignore ├── Procfile ├── README.md ├── hellofly.py ├── requirements.txt └── templates └── hello.html /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | fly.toml 3 | .vscode 4 | __pycache__ -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn hellofly:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/python-hellofly-flask/HEAD/README.md -------------------------------------------------------------------------------- /hellofly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/python-hellofly-flask/HEAD/hellofly.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/python-hellofly-flask/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/python-hellofly-flask/HEAD/templates/hello.html --------------------------------------------------------------------------------