In this article you will get to know: Why you shouldn’t host your application with the same settings used for development? What is the difference between development and production environments and settings? How to keep your production settings safely and conveniently? A bit proficiency in git version
Read more →When you need to somehow keep the state of your Django application, one of the possible solutions is to use sessions. They let you overcome the weakness of HTTP, which is, well, stateless. Django uses sessions by default for e.g. user authentication. You need this function if
Read more →