├── .do ├── app.yaml └── deploy.template.yaml ├── .github └── dependabot.yaml ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.py ├── gunicorn_config.py ├── requirements.txt └── templates └── index.html /.do/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-flask/HEAD/.do/app.yaml -------------------------------------------------------------------------------- /.do/deploy.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-flask/HEAD/.do/deploy.template.yaml -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-flask/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__/* 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-flask/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-flask/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-flask/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-flask/HEAD/app.py -------------------------------------------------------------------------------- /gunicorn_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-flask/HEAD/gunicorn_config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-flask/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-flask/HEAD/templates/index.html --------------------------------------------------------------------------------