Miscellaneous
3 min read | Django Taggit Tutorial Tagging in django - Learn to add tags in django application: blog, article, post, tutorial. |
---|---|
4 min read | Django Compressor Tutorial pip install django_compressor: learn to optimize, compress and minify static files in django (HTML, CSS and JAVASCRIPT) for production. |
3 min read | Python-Decouple: Manage Environment Variables In Django Learn to manage environment variables for multiple django settings: development, production, testing, stage, etc |
6 min read | Tinymce Django: Wysiwyg Editor Tinymce Editor Django: Learn to install, integrate in django admin, templates and forms. |
4 min read | How Do I Reset Django Migration Django Migrations: Reset, Remove, Delete applied migrations and its folder. |
5 min read | How To Create Custom Middleware In Django Django Middlewares: Write your own custom middleware and activate it in settings. |
5 min read | Disqus Commenting System With Django How to integrate disqus commenting system with your django site or django powered blog |
5 min read | How To Use/Integrate/Combine Django And React Together Using Webpack, we will make a react build that will be served by django itself. |
3 min read | Which Is The Best Database For Django Postgresql is the best database for django, as said in django's official documentation. |
2 min read | Convert A Django Queryset To List Use list(queryset) to convert a queryset to a list. Read more for alternate methods |
6 min read | How To Structure A Django Project For Beginners Learn how to set up a django-structure from scratch: organizing apps, static and media files, settings, and optimizing the site. |
3 min read | How Do I Add Read Time To My Blog In Django Use this readtime tag in django templates to calculate content reading time and display it. |
3 min read | How To Extend User Model In Django ? Create A Custom User Model Using Abstractuser Implement and add extra fields to a custom user model in Django. |
10 min read | Stripe Payment Gateway Integration In Django To integrate stripe with django, first install pip install stripe and then follow the rest of the article to configure the webhook |
2 min read | How To Setup A Ssl Certificate On Nginx For A Django Application We will use Letsencrypt to get free ssl certificates and certbot for automatic setup. In a few minutes you can se https in your website. |
2 min read | How To Create Custom Mixin In Django Class Based Views A Mixin is a special kind of inheritance in Python (and other object-oriented languages) and it's starting to get a big rise in Django / Web Application Development. You can use a Mixin to allow classes in Python to share methods between any class. |
12 min read | Django Migrations - Tutorial Learn how Djangoโs ORM manages Django database migrations in this comprehensive guide. |
22 min read | Django Orm Tutorial In this guide you will learn about django querysets, model managers, field lookups, aggregate functions and query expressions. |
10 min read | Automatic Deployment Of Django App Via Github Actions Automatic Deployment of Django App using Heroku and Github action:- |
3 min read | Implement Facebook Messenger Customer Chat Plugin In Django How to implement facebook messenger customer chat plugin in a django application |
4 min read | How To Create Signals In Django The Django Signals is a strategy to allow decoupled applications to get notified when certain events occur. |
8 min read | Django Request Response Lifecycle How does django request response cycle work |
4 min read | Deploying Django Application With Nginx How to setup python3, django, nginx and gunicorn for production in unutu |
6 min read | Deploying Django Application With Nginx And Postgresql How to setup nginx,django and postgresql |
2 min read | Cookies In Django How to use set_cookie, delete_cookie in django - set, get and delete cookies in django |
3 min read | Introduce Custom User Model In Middle Of A Django Project How to implement custom user model in django in the middle of the project |
2 min read | How To Redirect To Another Page In Django The simplest way to do this is to use the function redirect() from the module django.shortcuts. |
3 min read | Django Urls Regex: Path And Re_Path How to use path in django urls and make regular expressions like a pro |