lorddaedra
lorddaedra
May be it's good idea to add to docs https://django-guardian.readthedocs.io/en/stable/userguide/performance.html#direct-foreign-keys: ```, related_name='user_object_permissions'``` ```, related_name='group_object_permissions'```
@VladRassokhin Hi, Vlad! What do you think about it? it should be easy to maintain because of no version updates required, it will always install latest available version.
Another solution - use docker in docker (but it require to use --privileged flag) or mount docker.sock inside Agent. Next use https://github.com/GoogleCloudPlatform/cloud-sdk-docker/blob/master/Dockerfile (https://hub.docker.com/r/google/cloud-sdk/), but this solution can't be the best...
Also I see you test SQLite with dj-paddle. Do you see use-cases for that combination in real life, Django + SQLite + dj-paddle?.. I mean SQLite is usually used as...
@denys-pidlisnyi @sergeyklay What's about OPTIONS? (It's not possible to use sslmode, isolation_level etc. settings without OPTIONS) https://docs.djangoproject.com/en/4.1/ref/databases/#isolation-level https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-PARAMKEYWORDS
To be honestly, I use another package, `dj-database-url`. "Sister issue": https://github.com/jazzband/dj-database-url/issues/180 :-) this is my current `settings.py`, it works fine without any package code modifications: ```# Database # https://docs.djangoproject.com/en/4.1/ref/settings/#databases DATABASES...
@skilledboy I am sorry to have kept you waiting for so long. @ here I do not use cloudflare-ingress-controller anymore. (I use Google Cloud Run service for most of my...
@NghiaTranUIT Thank you for answer! Can I configure several subdomains (console.mycompany.local and core.mycompany.local) with same local port (443)? Browser Proxyman (console.mycompany.local:443) 127.0.0.1:3000 (or console.mycompany.local:3000) Browser Proxyman (core.mycompany.local:443) 127.0.0.1:8000 (or core.mycompany.local:8000)
@NghiaTranUIT Thanks again for answer! I think, I should say about 2 things here. 1.) About my task Goal of that setup: check correct work of secure cross-subdomain sessions and...
2.) Looks like there are several bugs: a.) Open apple.com in Safari ```handshakeFailed(NIOSSL.BoringSSLError.sslError([Error: 268435613 error:1000009d:SSL routines:OPENSSL_internal:INAPPROPRIATE_FALLBACK]))```, but In Brave Browser (Chromium based browser) it works... b.) Need disable and exit...