Meir Tseitlin

Results 46 comments of Meir Tseitlin

I am trying to enable OAuth2 authentication (based on Panel docs), but aside from redirecting to `/login` it's not working. Bokeh is still popping out the message: ``` INFO:bokeh.server.tornado:User authentication...

Ok, have some progress - you should replace: in `modifications/_server.py` you should replace: ``` if config.oauth_provider: from panel.auth import OAuthProvider opts["auth_provider"] = OAuthProvider() if oauth_provider: config.oauth_provider = oauth_provider ``` with...

The whole part of overriding `server.py` is highly problematic (in terms of `panel` upgrades and compatibility).... Maybe it makes sense to make the fixes more generic and request to merge...

I tested the setup with Auth0 and it works! Here is an Auth0 implementation I added - https://github.com/holoviz/panel/pull/1934 I can also create a PR for my changes in your code...

> Hi @cloud-rocket > > I've contributed a PR to Panel for the `get_server` function. > > * FR: [holoviz/panel#1938](https://github.com/holoviz/panel/issues/1938) > * PR: [holoviz/panel#1939](https://github.com/holoviz/panel/pull/1939) > > Please comment or upvote...

@sampsyo , 1st of all, thanks for bringing up this package - it makes a lot of sense from different perspectives. I understand that this approach is simple, even so...

@sampsyo , I am actually using the override with command line to my application and the changes are updated and stored in the config file. The idea is to store...

@sampsyo - do you think you can merge it? Thank you!

Thanks @sampsyo for the detailed and fast response! Maybe it's a different issue, but it's also not exactly clear how can you extend a Sequence dynamically (the way I did...

@sampsyo - sorry, don't really understand how is it related. I am trying to add extra members to Sequence dynamically instead of using `set` to manually add new items to...