├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.py ├── model.pkl ├── model.py ├── request.py ├── requirements.txt └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Heroku-Demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Heroku-Demo/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Heroku-Demo -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Heroku-Demo/HEAD/app.py -------------------------------------------------------------------------------- /model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Heroku-Demo/HEAD/model.pkl -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Heroku-Demo/HEAD/model.py -------------------------------------------------------------------------------- /request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Heroku-Demo/HEAD/request.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Heroku-Demo/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Heroku-Demo/HEAD/templates/index.html --------------------------------------------------------------------------------