Alex Zagoro

Results 17 comments of Alex Zagoro

Oh how nice would it be to be able to dump the entire database into a file!

You have a point @raphael-boucher :) uhmm, i don't know if I have a very strong argument. But one good use I found is to put external libraries in, let's...

Is there a simple way to just have an ability to load svg icons and then pick them at the block level? Some kind of `SVGChooserBlock` that you guys know...

Seems like the jobs called with `.delay()` still fail if Redis is not running despite having `ASYNC` set to `False`. Here are my settings: ```In [1]: settings.RQ_QUEUES Out[1]: {'default': {'HOST':...

@selwin yea i figured that much. I have a solution but it feels hacky and depends on another library. I wish there was just a flag. But in case someone...

To add to this, the `Boolean` values are cast correctly. Below is a `BooleanValue` class from django-configurations source code, I added `print()` statements for debugging. ```python class BooleanValue(Value): true_values =...

@hugobrilhante That is not what I'm talking about, I mean relying on Boolean values withing the `settings.py`, even within the same settings class.

> Understand. have you tried it [environ_name](https://django-configurations.readthedocs.io/en/stable/values/?highlight=environ_name#allow-final-value-to-be-used-outside-the-configuration-context) that doesn't help. i found two reliable ways. either using ``` if VAR_NAME.value: pass ``` or put the logic into `post_setup` hook, like...