├── .env ├── .gitignore ├── Procfile ├── app.py ├── diagnose.py ├── readme.md └── requirements.txt /.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebezzam/DoctorBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app --log-file=- -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebezzam/DoctorBot/HEAD/app.py -------------------------------------------------------------------------------- /diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebezzam/DoctorBot/HEAD/diagnose.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebezzam/DoctorBot/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebezzam/DoctorBot/HEAD/requirements.txt --------------------------------------------------------------------------------