Moving from Jupyter Lab to Webpage

I have a Jupyter Notebook that uses interact to load Panda DF and plots them. I’ve tried to serve the jupyter file and just the Python version unsuccessfully. Is it possible to serve a Jupyter Notebook that uses the Interact function to serve to a webpage? I don’t see any errors once I run the bokeh serve command.

There was recent work to add support using ipywidgets inside Bokeh apps:

http://docs.bokeh.org/en/latest/docs/user_guide/jupyter.html#ipywidgets-outside-the-notebook

however, AFAIK you will need to hook up event handlers directly as seen in the examples. I am not aware of any way to use interact outside the notebook.