├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── question.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.gz 2 | env 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blha303/question/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn question:app --log-file=- 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blha303/question/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blha303/question/HEAD/app.json -------------------------------------------------------------------------------- /question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blha303/question/HEAD/question.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blha303/question/HEAD/requirements.txt --------------------------------------------------------------------------------