I love Django, not just because it on top of Python, but more because it keeps its philosophy: All Zen of Python is respected with batteries included. The Ponies' framework has basically most tools and mechanisms a WebDev would want to have as such authentication, ORM multi-DB or template engine. But where Django becomes definitively ...
50 tips to maintain a Django reusable app
Published Jan. 2, 2018 in Deployment, Development, Tests and quality, Documentation, Web - Last update on Jan. 2, 2018.
Idea of the day: dj-cache-url
Published Sept. 1, 2016 in Development - Last update on Sept. 1, 2016.
I was working in a Django project, more precisely its settings, I stopped in front of CACHES
parameter, I love when code use an agnostic way and in Django settings I love to use dj-database-url
to configure DATABASES
, so I made the same for CACHES
: At this time dj-cache-url
was born.
dj-database-url ?
I won't ...