I want to replicate this: https://github.com/bokeh/bokeh/blob/master/examples/app/sliders_applet/sliders_app.py
On my own multiuser bokeh server (bokeh-server -m). However the comment clearly states that you have to run:
bokeh serve app.py
This doesn't seem to be shipped with bokeh 0.10.0. I would like to publish it like I do with my other interactive plots e.g:
Session().login('tmpuser', 'securepassword')
output_server('sliders')
# The modified sliders_app.py code
cursession().publish()
There seems to be a lot of inconsistency between the documentation for different versions and the available examples. The server documentation here is easy to follow: http://docs.bokeh.org/en/0.10.0/docs/user_guide/server.html
I can get a server up and running and publish simple static plots, but most of the interactive examples won't run as expected. Even simple tabs won't work.