Arkadiusz Adamski

Results 21 comments of Arkadiusz Adamski

Hello, you can also do this more efficiently and in a more user-friendly way. Try inheriting from the base image by writing your own Dockerfile with an additional package. Try...

Hi, sorry for that it's my fault - 0.3.1 was deleted according to #23 but I forget that pypi disallow reupload same version (but I am sure that I reupload...

Please try to add following code: ``` class TestObserverTestCase: XCTestCase { private static var initialized = false open override func setUp() { if !TestObserverTestCase.initialized { TestObserverTestCase.initialized = true _ =...

When you build on linux environment you have to add test observer (`SwiftTestReporter.TestObserver`) and `LinuxMain.swift` is the best place for that. Alternatively, you can generate `LinuxMain.swift` by following command `swift...

You can use a custom form builder like this: ``` from captcha.fields import ReCaptchaField from captcha.widgets import ReCaptchaV3 from wagtailcaptcha.forms import WagtailCaptchaFormBuilder from wagtailcaptcha.models import WagtailCaptchaEmailForm class CustomFormBuilder(WagtailCaptchaFormBuilder): @property def...

> Change the url path to the admin page This project is public (everyone view `urls.py`) so I suggest to determine this path by configuration on the server (by environment...

@nfoert I can take care of the first and second bullet points.

@mSaurabh In https://github.com/nfoert/cardie/pull/67 I have introduced `ruff` to format Python code and also it is available from VS code as an extension.

Now I notice that you propably do some changes in JS files. For JS files I recommend `biome` - I am in the middle of implementing (https://github.com/nfoert/cardie/pull/76) but it is...

IMHO if you have only one instance on one domain there is no sense to store configuration in database. > the admin interface offers an easier way to quickly adjust...