├── .gitignore ├── Procfile ├── README.md ├── app.py ├── requirements.txt ├── runtime.txt ├── static └── css │ ├── bootstrap.min.css │ └── main.css └── templates ├── base.html └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvadm/heroku-python-skeleton/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvadm/heroku-python-skeleton/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvadm/heroku-python-skeleton/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.4 2 | -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvadm/heroku-python-skeleton/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvadm/heroku-python-skeleton/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvadm/heroku-python-skeleton/HEAD/templates/index.html --------------------------------------------------------------------------------