├── .github └── dependabot.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Pipfile ├── Pipfile.lock ├── Procfile ├── README.md ├── app.json ├── bin ├── fix-venv.sh └── update-pip-tools.sh ├── requirements-dev.in ├── requirements-dev.txt ├── requirements.in └── requirements.txt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iphoting/youtube-dl-api-server-heroku/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .venv/ 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iphoting/youtube-dl-api-server-heroku/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iphoting/youtube-dl-api-server-heroku/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iphoting/youtube-dl-api-server-heroku/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn youtube_dl_server.app:app --log-file - 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iphoting/youtube-dl-api-server-heroku/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iphoting/youtube-dl-api-server-heroku/HEAD/app.json -------------------------------------------------------------------------------- /bin/fix-venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iphoting/youtube-dl-api-server-heroku/HEAD/bin/fix-venv.sh -------------------------------------------------------------------------------- /bin/update-pip-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iphoting/youtube-dl-api-server-heroku/HEAD/bin/update-pip-tools.sh -------------------------------------------------------------------------------- /requirements-dev.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iphoting/youtube-dl-api-server-heroku/HEAD/requirements-dev.in -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iphoting/youtube-dl-api-server-heroku/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- 1 | youtube_dl_server>=0.3 2 | gunicorn 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iphoting/youtube-dl-api-server-heroku/HEAD/requirements.txt --------------------------------------------------------------------------------