├── .all-contributorsrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── ----bug-report.md │ ├── ---feature-request.md │ └── ---say-thank-you.md └── workflows │ └── label.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Procfile ├── README.md ├── api ├── __init__.py ├── apps.py ├── migrations │ └── __init__.py ├── serializers.py ├── templates │ └── api.html ├── tests │ ├── __init__.py │ └── test_views.py ├── urls.py └── views.py ├── app ├── __init__.py ├── admin.py ├── apps.py ├── cache_constants.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20190829_1937.py │ └── __init__.py ├── models.py ├── resources.py ├── static │ └── app │ │ ├── TDB.png │ │ ├── computer.svg │ │ ├── computer2.svg │ │ ├── css │ │ └── customCSS.css │ │ ├── emoji1.png │ │ ├── fb.svg │ │ ├── github.svg │ │ ├── guy.svg │ │ ├── help.svg │ │ ├── icon-192.png │ │ ├── icon-512.png │ │ ├── js │ │ ├── burger.js │ │ ├── colorpad.js │ │ └── custom.js │ │ ├── linkedin.svg │ │ ├── manifest.json │ │ ├── patreon.png │ │ ├── search.png │ │ ├── search404.svg │ │ ├── tutorialdb.png │ │ └── twitter.svg ├── templates │ ├── about.html │ ├── base.html │ ├── contribute.html │ ├── home.html │ ├── latest.html │ ├── search_results.html │ ├── service-worker.js │ ├── taglinks.html │ ├── tags.html │ └── thankyou.html ├── tests │ ├── __init__.py │ └── test_views.py ├── urls.py └── views.py ├── manage.py ├── requirements.txt ├── runtime.txt ├── taggie ├── __init__.py ├── migrations │ └── __init__.py ├── parser.py └── tags.json └── tutorialdb ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/----bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/.github/ISSUE_TEMPLATE/----bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/.github/ISSUE_TEMPLATE/---feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---say-thank-you.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/.github/ISSUE_TEMPLATE/---say-thank-you.md -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn tutorialdb.wsgi --log-file - -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/README.md -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/api/apps.py -------------------------------------------------------------------------------- /api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/api/serializers.py -------------------------------------------------------------------------------- /api/templates/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/api/templates/api.html -------------------------------------------------------------------------------- /api/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/api/tests/test_views.py -------------------------------------------------------------------------------- /api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/api/urls.py -------------------------------------------------------------------------------- /api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/api/views.py -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/admin.py -------------------------------------------------------------------------------- /app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/apps.py -------------------------------------------------------------------------------- /app/cache_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/cache_constants.py -------------------------------------------------------------------------------- /app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/migrations/0001_initial.py -------------------------------------------------------------------------------- /app/migrations/0002_auto_20190829_1937.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/migrations/0002_auto_20190829_1937.py -------------------------------------------------------------------------------- /app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/models.py -------------------------------------------------------------------------------- /app/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/resources.py -------------------------------------------------------------------------------- /app/static/app/TDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/TDB.png -------------------------------------------------------------------------------- /app/static/app/computer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/computer.svg -------------------------------------------------------------------------------- /app/static/app/computer2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/computer2.svg -------------------------------------------------------------------------------- /app/static/app/css/customCSS.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/css/customCSS.css -------------------------------------------------------------------------------- /app/static/app/emoji1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/emoji1.png -------------------------------------------------------------------------------- /app/static/app/fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/fb.svg -------------------------------------------------------------------------------- /app/static/app/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/github.svg -------------------------------------------------------------------------------- /app/static/app/guy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/guy.svg -------------------------------------------------------------------------------- /app/static/app/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/help.svg -------------------------------------------------------------------------------- /app/static/app/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/icon-192.png -------------------------------------------------------------------------------- /app/static/app/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/icon-512.png -------------------------------------------------------------------------------- /app/static/app/js/burger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/js/burger.js -------------------------------------------------------------------------------- /app/static/app/js/colorpad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/js/colorpad.js -------------------------------------------------------------------------------- /app/static/app/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/js/custom.js -------------------------------------------------------------------------------- /app/static/app/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/linkedin.svg -------------------------------------------------------------------------------- /app/static/app/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/manifest.json -------------------------------------------------------------------------------- /app/static/app/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/patreon.png -------------------------------------------------------------------------------- /app/static/app/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/search.png -------------------------------------------------------------------------------- /app/static/app/search404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/search404.svg -------------------------------------------------------------------------------- /app/static/app/tutorialdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/tutorialdb.png -------------------------------------------------------------------------------- /app/static/app/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/static/app/twitter.svg -------------------------------------------------------------------------------- /app/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/templates/about.html -------------------------------------------------------------------------------- /app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/templates/base.html -------------------------------------------------------------------------------- /app/templates/contribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/templates/contribute.html -------------------------------------------------------------------------------- /app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/templates/home.html -------------------------------------------------------------------------------- /app/templates/latest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/templates/latest.html -------------------------------------------------------------------------------- /app/templates/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/templates/search_results.html -------------------------------------------------------------------------------- /app/templates/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/templates/service-worker.js -------------------------------------------------------------------------------- /app/templates/taglinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/templates/taglinks.html -------------------------------------------------------------------------------- /app/templates/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/templates/tags.html -------------------------------------------------------------------------------- /app/templates/thankyou.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/templates/thankyou.html -------------------------------------------------------------------------------- /app/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/tests/test_views.py -------------------------------------------------------------------------------- /app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/urls.py -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/app/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.8 -------------------------------------------------------------------------------- /taggie/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taggie/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taggie/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/taggie/parser.py -------------------------------------------------------------------------------- /taggie/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/taggie/tags.json -------------------------------------------------------------------------------- /tutorialdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorialdb/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/tutorialdb/settings.py -------------------------------------------------------------------------------- /tutorialdb/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/tutorialdb/urls.py -------------------------------------------------------------------------------- /tutorialdb/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhupesh-V/tutorialdb/HEAD/tutorialdb/wsgi.py --------------------------------------------------------------------------------