django-planet

Muhammed Ali

Blog Info Honeybadger Developer Blog
Blog website Link

Options for passwordless authentication in Django apps

Sept. 28, 2023 » Honeybadger Developer Blog (Django Articles) » [Archived Version]

Passwordless authentication is gaining popularity as a secure and user-friendly alternative to traditional password-based authentication in Django applications. In this article, we will delve into three passwordless authentication methods: email-based authentication, authentication with OAuth, and authentication with magic links.

Read More

Deploying a Django application on Ubuntu

Jan. 19, 2023 » Honeybadger Developer Blog (Django Articles) » [Archived Version]

Do you need complete control over your production environment? If so, you might want to skip the Platform as a Service (PaaS) offerings and deploy to your own server instead. This article describes deploying a Django application to an Ubuntu server at Linode.

Read More

Working With GraphQL and Django

Jan. 5, 2023 » Honeybadger Developer Blog (Django Articles) » [Archived Version]

If you've ever wondered if there is a better way to build and consume APIs, you should check out GraphQL—it's better than REST in many cases. This article discusses how to work with GraphQL in Django.

Read More

How to dockerize a Django and React application

Oct. 20, 2022 » Honeybadger Developer Blog (Django Articles) » [Archived Version]

Docker offers many benefits, but it can be tricky to get started—especially when you need to deploy several components. In this article, Muhammed Ali shows how to use Docker and Docker Compose to containerize an application built with Django and React.

Read More

Job Queues and Workers in Django

Oct. 6, 2022 » Honeybadger Developer Blog (Django Articles) » [Archived Version]

Job queues are a powerful tool for processing background work in your Django applications. This article teaches about job queues and workers—and how to implement them with Django Q and Celery.

Read More

Building a Realtime Chat App with Django Channels and WebSockets

Sept. 22, 2022 » Honeybadger Developer Blog (Django Articles) » [Archived Version]

Building stateful web applications can be tricky, unless you use a framework, of course—Django to the rescue! In this article, learn how to build a realtime chat app using Django Channels and WebSockets.

Read More

Automating Django Tests with Github Actions

Aug. 18, 2022 » Honeybadger Developer Blog (Django Articles) » [Archived Version]

Automating your test suite helps get your code to production faster. In this tutorial, you'll learn how to write unit tests for Django and run them with GitHub Actions.

Read More