├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.py ├── contributing.md ├── data.json ├── joke.py ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerkumar18/geek-joke-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerkumar18/geek-joke-api/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerkumar18/geek-joke-api/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerkumar18/geek-joke-api/HEAD/app.py -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerkumar18/geek-joke-api/HEAD/contributing.md -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerkumar18/geek-joke-api/HEAD/data.json -------------------------------------------------------------------------------- /joke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerkumar18/geek-joke-api/HEAD/joke.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerkumar18/geek-joke-api/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.10 2 | --------------------------------------------------------------------------------