Django Unleashed Framework
1.42K subscribers
2.2K photos
1 video
2.64K links
Лучшие материалы по разработке на фреймворке Django на русском и английском языке

Разместить рекламу: @tproger_sales_bot

Правила общения: https://tprg.ru/rules

Другие каналы: @tproger_channels

Другие наши проекты: https://tprg.ru/media
Download Telegram
Google SSO Integration with Django

Hi ,
Nowadays Instead of custom authentication everybody is using the SSO . Instead of maintaining the passwords and user information we are depending on the trusted companies like Google , OKTA... etc. In the same way I migrated project to remove th...

Read: https://venkatesh.hashnode.dev/google-sso-integration-with-django
How to set up environment variables in Django?

Django does not come with built-in support for dot env(.env) files. But we have an amazing Python package for that.

Let’s first install this package in our Django project’s virtual environment.

pip install python-dotenv


The next step is to create...

Read: https://blog.devjunction.in/set-up-environment-variables-in-django
How To Implement A Recently Viewed Feature In Your Django Web App

Introduction
Often when we build web applications, we want to keep a record of the items our web app users recently viewed. Our web app could be a Blog where we want to keep a record of the post a user( Authenticated or Anonymous User ) recently view...

Read: https://dracodes.hashnode.dev/how-to-implement-a-recently-viewed-feature-in-your-django-web-app
How To Implement A Recently Viewed Feature In Your Django Web App

Introduction
Often when we build web applications, we want to keep a record of the items our web app users recently viewed. Our web app could be a Blog where we want to keep a record of the post a user ( Authenticated or Anonymous User ) recently vie...

Read: https://dracodes.com/how-to-implement-a-recently-viewed-feature-in-your-django-web-app
How to create Rest API without Django Rest Framework in pure Django?

Introduction:
Can we build APIs, without DRF (Django Rest Framework) 🤔 ?
DRF is to make things easy and comes with a lot of extra functionality which we don't even use sometimes.
If your goal is to just send some JSON data from your View response, ...

Read: https://blog.devjunction.in/how-to-create-rest-api-without-django-rest-framework-in-pure-django
Building Modern Websites Using Django

Django
Django is a Python-based web framework. A Web framework is a software that allows for the creation of dynamic Web sites, applications, and services. It includes tools and functions that address many typical Web development issues, such as sec...

Read: https://sarahthedeveloper.hashnode.dev/building-modern-websites-using-django
Step-By-Step To Create A Simple Django project

Overview
Django is a free, open-source Python web framework that encourages rapid development and clean, pragmatic design.
In this blog I am going to introduce a step-by-step tutorial of a simple Django project using Python programming language.


Se...

Read: https://dialabk.hashnode.dev/step-by-step-to-create-a-simple-django-project
Running a Django app natively on Windows (for development)

At work we use Windows 10 Ent edition and have a Django 2.2 website that is run on the developers' localhost via VirtualBox with Ubuntu 20.04 since the beginning. It was good but one had to constantly do sys-admin for the Ubuntu VM. That wasn't a big...

Read: https://anjanesh.dev/running-a-django-app-natively-on-windows-for-development
A CS50web series: Where did I stuck? How did I solve?

Hi again. Last week I wrote my first blog post which was about cs50's web development course's "Search" project. Now it is time to move on and write my second article about this course. During the last week I have been watching the other lessons and ...

Read: https://osmanozdemir.hashnode.dev/a-cs50web-series-where-did-i-stuck-how-did-i-solve-1
Запустить принудительно остановленный Docker контейнер можно с помощью…
Anonymous Poll
30%
docker start
21%
docker restart
13%
docker exec
37%
docker run
How to Avoid Race Condition in Django

Overview
In this article, you are going to learn how to build Django application that is devoid of race condition so as to provide real and accurate data.
Imagine you are building a like system or voting system for a website or API and the value of t...

Read: https://bovage.hashnode.dev/how-to-avoid-race-condition-in-django
Django News - DjangoCon US/Europe Call for Proposals - May 13th 2022

Read: https://django-news.com/issues/127
Django News - DjangoCon US/Europe Call for Proposals - May 13th 2022

Read: https://django-news.com/issues/127
How to revert migrations in Django?

Introduction:
Sometimes we run a migration that make changes in our database, but we want to revert it and delete the migration, without creating a new migration.
Well, in that case, there is a small trick that you can use to revert your migration sa...

Read: https://blog.devjunction.in/revert-migrations-in-django
👍2
Introduction to Djnago Framework

In this article and the upcoming ones, I will provide you with a basic introduction to what is the Djnago framework and how to create your first ever app in simple and straight forward steps, with the addition of explaining a bit more on each buildin...

Read: https://batoolragayah.hashnode.dev/introduction-to-djnago-framework
Introduction to Django Framework

In this article and the upcoming ones, I will provide you with a basic introduction to what is the Djnago framework and how to create your first ever app in simple and straight forward steps, with the addition of explaining a bit more on each buildin...

Read: https://batoolragayah.hashnode.dev/introduction-to-django-framework
How to serve static files in Django Production with WhiteNoise?

Introduction:
You might have faced this situation while deploying your Django project to the production, when the static files were not available after adding DEBUG=False in settings.py file. Because Django is not capable of serving the static files ...

Read: https://blog.devjunction.in/serve-static-files-in-django-production-with-whitenoise
Building Résumé with Django

"Everything was first an idea"

Overview
If you've ever needed an internship, apprenticeship, or a job, you've almost likely needed a resume or CV (depending on the company's choice).
You may have even utilized CV generators such as Visualcv or Novor...

Read: https://sarahthedeveloper.hashnode.dev/building-resume-with-django
Setup Continuous Deployment For Your Django Project With Docker Compose, Caddy and GitHub

There are many services that offer easy and continous deployments, for example Heroku or Dokku. But you might want to consider doing it yourself, Heroku is expensive and Dokku won't scale past one server, using Docker ensures that you will be able to...

Read: https://code.roettgers.co/django-docker-compose-continuous-deployment
Django 4.0.4 Best Practices Tutorial : Part 1

Wha's Django ?
Django is a Python-based web framework. A Web framework is a piece of software that helps you build dynamic Web sites, apps, and services. It includes a set of tools and functionalities that address a variety of common Web development...

Read: https://ayat.hashnode.dev/django-404-best-practices-tutorial-part-1