django-planet

Feed: timonweb.com

Posts.

Blog timonweb.com
RSS 2.0 Feed timonweb.com
web https://timonweb.com/
Last Update01.29.2025
Posts16

Django Tailwind v2.0 is out. It brings the "JIT" mode and hot reloading.

March 12, 2023 » timonweb.com » [Archived Version]

I'm pleased to announce the release of the Django Tailwind v2.0. Django Tailwind is an integration package for Tailwind CSS and Django. Its goal is to make your life easier without having to think much about the frontend tooling configuration. With the help of the package, you generate … Read now

Read More

Django-Tailwind v2.2 is out

March 12, 2023 » timonweb.com » [Archived Version]

Today I'm officially announcing the release of Django-Tailwind v2.2. It was soft-launched last week, and since I haven't got any complaints, I think I'm good to let you all know about the release. The current update adds improved support for the latest 2.2 version of the Tailwind CSS framework. … Read now

Read More

How to run a local Django development server over HTTPS with a trusted self-signed SSL certificate

March 12, 2023 » timonweb.com » [Archived Version]

Generating a self-signed SSL certificate for local Django development has always been a hassle for me. Until the day I discovered mkcert, a zero-config tool that creates locally trusted development certificates, your browser will not complain about. In this tutorial, I'll share my process, and you'll learn how to … Read now

Read More

Django-Tailwind with support for the latest Tailwind CSS v3 is out

March 12, 2023 » timonweb.com » [Archived Version]

Yesterday, as I was about to go to bed, I found out that Tailwind CSS 3.0 with lots of cool improvements had been released. Knowing that a lot of Django people adore Tailwind CSS so much, I decided I couldn't sleep until I upgraded Django-Tailwind to support the latest version … Read now

Read More

You can now use 'pip' to install Tailwind CSS. Node.js is no longer required!

March 12, 2023 » timonweb.com » [Archived Version]

I recently released pytailwindcss, a Python package that lets you install the Tailwind CSS executable via pip with just one command: pip install pytailwindcss After the installation is complete, use the terminal to run the tailwindcss command: tailwindcss Behind the scenes, it runs a standalone Tailwind CSS build that … Read now

Read More

Django Dev Made Easy: How to Run Multiple Processes Simultaneously

March 12, 2023 » timonweb.com » [Archived Version]

As a Django developer, I have to run multiple processes while developing, such as the Django server, a JavaScript compiler, and Celery. Launching these processes separately can be time-consuming and tedious. Just try opening three terminal windows, and you'll understand what I mean. Finally, I found a solution … Read now

Read More