Pavel Khorikov
Pavel Khorikov
Окей, тогда странное совпадение Но у меня может другая проблема была, потому что залипал он только если я исключительно на dev деплоил В случае обычного запуска там у меня успешно...
You should use rc-apps deploy --url=http://localhost:3000 **--update** P.S. However, I agree that it would be more convenient to have one deployment command that either installs or updates the application itself
@d-gubert If I understand correctly, the `watch` command is needed for development. and by the way, I just tried it and get the error: ``` Error: Cannot find module 'chokidar'...
@ritwizsinha Of course I have this file. The scaffolding was generated by the same version of rc-apps If others do not have this problem, could you tell me how I...
It is a case at least with recursive models ```python class Task(DRFBaseModel): id: UUID subtasks: list["Task"] | None = None Task.update_forward_refs() # v1 deprecated Task.model_rebuild() ```
I'm always here I'll try to find free time to check
For anyone looking for quick ~solution~ hacky workaround - here is patch fixture `conftest.py` ```python # https://github.com/kevin1024/vcrpy/issues/844 @pytest.fixture(autouse=True, scope="session") def fix_patch_vcr(): import vcr.stubs.httpx_stubs from vcr.request import Request as VcrRequest def...
Here is rough workaround ```javascript const { abn } = require('/usr/local/lib/node_modules/@phuocng/fake-numbers'); const faker = require('/usr/local/lib/node_modules/pg-anonymizer/node_modules/faker'); const omitJsonField = (field, val, newFieldValue = 'Omitted') => { const parsed = JSON.parse(val); if...
Current workaround for me is to make `null=False`, but `Optional[]` typehint It is inconvenient for linters as require redundant asserts
Hi @rgm89git I was finally find time to see the result The effect looks good I only have some implementation tips. To sum up, abstractions do not pass along the...