[Fixed]-How to embed Bokeh server in Django application

10👍

No need to reinvent.

  • bokeh-server is a webserver and can listen on arbitrary port.
  • you can have your django webserver listen on some other arbitrary port.
  • … and integrate the two:
    • have redirects from django to bokeh-server, or
    • webserver in front, e.g. nginx which does reverse-proxy.
👤dnozay

Leave a comment