Thursday, July 15, 2021

Matt Layman: Making Sense Of Settings

In the last Understand Django article, we looked at a storage concept in Django called sessions. Sessions help us answer questions like “How does Django know when a user is logged in?” or “Where can the framework store data for a visitor on your app?” With this article, you’ll learn about Django settings and how to manage the configuration of your application. We’ll also look at tools to help you to be extra effective with settings.

from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...