Petr Přikryl

Results 12 comments of Petr Přikryl

It seems that **sqlcmd** is possible to install on linux (Red Hat, Ubuntu, SUSE) and OS X. So it could be the right way to go. More at https://docs.microsoft.com/en-us/sql/linux/sql-server-linux-setup-tools

> 2. Change the `client-plugins` folder to `clients/plugins` > > ```shell > mv client-plugins clients/plugins > ``` @cobenash Are you sure about `clients/plugins`? I think it should be `client/plugins` instead...

I think that @bluesurfer was talking about built-in backup cron job in postgres container. Or standalone backup container (service) built onto postgres image with configurable scheduling. With this feature you...

Isn't there way using yarn's `--modules-folder`? Assuming switch from NPM to yarn. https://stackoverflow.com/a/53998408/1763888 https://classic.yarnpkg.com/en/docs/cli/install#toc-yarn-install-modules-folder Then you shouldn't need bind mounts on _package*.json_ because all yarn commands should be feasible from...

Problem is here: https://github.com/celery/django-celery-beat/blob/5a72e0a1911a7fef1fb725c91d10a61ca1e0e83f/django_celery_beat/schedulers.py#L174-L191 Because `_unpack_fields` only creates uncomplete desired state of `entry` (`PeriodicTask`). And do not unset stale value of interval / crontab / etc. which is in DB....

Problem is here https://github.com/django/django/blob/4.0.5/django/contrib/auth/forms.py#L303 because users created via social auth will not have `has_usable_password`. So maybe setting some random very strong password to the user while sign up could bypass...

The explanation lies in Django https://github.com/django/django/blob/master/django/contrib/auth/__init__.py#L184 because if you (like me) let path `social.backends...` instead of `social_core.backends...` in `AUTHENTICATION_BACKENDS` then you are correctly authenticated but `AuthenticationMiddleware` cannot detect it. ```...

Hello, maybe you can inspire here https://pypi.org/project/django-migrate-sql-deux/. It generates non-standard Django migrations for own SQL objects managed in Python. Very similar to django-pgviews. I think this technique comes very handy...

> @DonnaRosa Thank very much for your response! > > I've tried several files. For example, [that one](https://yadi.sk/i/2e5s4wtrUGMEIw). They are opened and saved correctly using jpeg, jpeg-turbo (last jpeg-turbo test...

Hi, if anyone is facing problem starting worker in Django app: ``` Traceback (most recent call last): File "/usr/local/lib/python3.11/site-packages/procrastinate/utils.py", line 391, in run_tasks await asyncio.gather(_main(), *side_tasks) File "/usr/local/lib/python3.11/site-packages/procrastinate/utils.py", line 383,...