ju5t

Results 34 comments of ju5t

@roli8200 this should be fixed with #8 but unfortunately it doesn't seem like it will be merged any time soon. If you are in a situation where you can compile...

The documentation is definitely outdated, base.html doesn't exist, index.html does. It doesn't have a logo layout block though. We need to override the version it sends to the API. Adding...

To override the version you have to set: ``` SWAGGER_SETTINGS = { ... 'ACCEPT_HEADER_VERSION': '1.0.0', ... } ``` Ref: https://marcgibbons.com/django-rest-swagger/settings/#headers

@pmochine most details are in https://github.com/laravel/octane/issues/113. We ended up writing our own simplified localisation support. This was much easier for us. It isn't something we can share at this point...

Apparently DRF 3.6.4 isn't supported anymore. I've upgraded to 3.7.7 and that starts the application but fails to render any pages. From the looks of it because `AcceptHeaderVersioning` is not...

@trik I've just tested this but it seems you still need to specify the version as `url(r'^(?P(v1))/', include('drf_openapi.urls')),`. This is required by ``. I haven't tried #93 yet but that...

@trik AcceptHeaderVersioning. We have `DEFAULT_VERSION` set too. If we don't specify a header it should still be able to render the docs, I think?

> My understanding was that Livewire is more of a way to embed components into a page instead of replacing or changing the HTTP response cycle (like how Inertia.js does,...

@ksassnowski I'm not there yet with our application and I don't have enough spare time to build an example straight away unfortunately. Sorry if my previous reply was unclear, I...

This is really cool. I've got some native javascript that does the arrow movement, triggered by Alpine, that I could share. But I guess you've got this covered already. Let...