Abe Hanoka

Results 116 comments of Abe Hanoka

@browniebroke recently brought [Cruft](https://github.com/cruft/cruft) to my attention. It strive to solve the problem you mention. I've only used it with [Cookiecutter](https://github.com/cookiecutter/cookiecutter) templates but i wonder if it ll work with...

I just had a relativity easy time updating my project using `uvx copier update --trust` https://github.com/mergecal/python-mergecal/pull/107 The only caveat is i first changed some of the answers in `.copier-answers.yml `...

Is it possible to log the request headers?

@vishalanandl177 any timeline on a release with this fix?

My guess is you need to add a `.env` (at project root) with a few secrets TBH i never properly documented the steps to deploy. recently a people few have...

to make it backward compatible you can do something like this as suggested on the [django forum](https://forum.djangoproject.com/t/add-a-setting-to-exempt-urls-in-loginrequiredmiddleware/39714/4) ```python try: from django.contrib.auth.decorators import login_not_required except ImportError: # For Django < 5.1,...

Great A couple of questions: 1. we need to upgrade to bootstrap 5.3, should that be a seporate PR or can include it here? 2. We don't ship with bootstrap...

I wonder if we should store the user's theme preference (light/dark) in the session and pass it to the template on all page loads. This would let us set the...