django-planet

What's new in Django community blogs?

django-prose-editor – Prose-editing component for the Django admin

March 13, 2024 » Matthias Kestenholz: Posts about Django » [Archived Version]

django-prose-editor – Prose-editing component for the Django adminDuring the last few days I have been working on a prose-editing component for the Django admin which will replace the basically dead django-ckeditor in all of my projects. It is based on ProseMirror, in my opinion the greatest toolkit for building prose editors for the web. Here’s a screenshot: django-prose-editor is in active development; it’s available on PyPI and is developed in the open here on GitHub. The versio…

Read More

How to get your issue looked at quickly

March 13, 2024 » Carlton's latest posts. » [Archived Version]

Do the work. Add a test. Seriously. You come to the repo with a description. It’s maybe plausible. But TBH I don’t know. Sure it’s my project, I know it as well as anyone. But I can’t just intuit from the ether every possible interaction along every possible code path. As it stands I need to put quite a lot of work in to verify your issue. You might give me a sample project. It’s so rarely just pull and run. (Or worse you gave a docker project, for which I no longer have the life force left …

Read More

Django News - Django security releases issued: 5.0.3, 4.2.11, and 3.2.25 - Mar 8th 2024

March 8, 2024 » Django News » [Archived Version]

News Django security releases issued: 5.0.3, 4.2.11, and 3.2.25 A new security release addressing a potential regular expression denial-of-service. As always, the best security measure is to stay up-to-date with the latest version of Django. djangoproject.com Google Summer of Code 2024 Django is once again part of Google's Summer of Code. This long-running program has resulted in many key contributions to Django over the years. w…

Read More

Do It Live - Building SaaS with Python and Django #185

March 8, 2024 » Django on Matt Layman » [Archived Version]

In this episode, we deployed all our user setup and Stripe configuration change to the live site and tested the new flows end to end. Along the way, we found a bug in djstripe as well as some final bugs in the JourneyInbox configuration that prevented things from working. This is why you test!

Read More

Do It Live - Building SaaS #185

March 8, 2024 » Django on Matt Layman » [Archived Version]

In this episode, we deployed all our user setup and Stripe configuration change to the live site and tested the new flows end to end. Along the way, we found a bug in djstripe as well as some final bugs in the JourneyInbox configuration that prevented things from working. This is why you test!

Read More

Final Pre-live Features - Building SaaS with Python and Django #184

March 7, 2024 » Django on Matt Layman » [Archived Version]

In this episode, we completed the final features needed to get the site open for others to sign up. This included some dynamic limiting of the number of people allowed to sign up. We also had to add the template styling for the login page.

Read More

Final Pre-live Features - Building SaaS #184

March 7, 2024 » Django on Matt Layman » [Archived Version]

In this episode, we completed the final features needed to get the site open for others to sign up. This included some dynamic limiting of the number of people allowed to sign up. We also had to add the template styling for the login page.

Read More

Thoughts on Code Reviews

March 6, 2024 » Anže’s Blog » [Archived Version]

My thoughts on code reviews.

Read More

Deploying Django Apps in Kubernetes

March 5, 2024 » The PyCharm Blog » [Archived Version]

As an open-source container orchestration platform that automates deployment, scaling, and load balancing, Kubernetes offers unparalleled resilience and flexibility in the management of your Django applications. Whether you’re launching a small-scale project or managing a complex application, Kubernetes provides a robust environment to enhance your Django application, ensuring it’s ready to meet the demands of […]

Read More

Speed up Django’s collectstatic command with Collectfasta

March 4, 2024 » JasonGi » [Archived Version]

Django’s collectstatic command (added in Django 1.3 – March 23, 2011) was designed for storage backends where file retrieval was cheap because it was on your local disk. In Django 1.4 (March 23, 2012) Django introduced CachedStaticFilesStorage which would append md5 hashes to the end of files so that you could have multiple versions of … Continue reading "Speed up Django’s collectstatic command with Collectfasta" The post Speed up Django’s collectstatic command wit…

Read More