Where is the Bokeh static resources directory

Hi
I am trying to run the example Apache configuration that you have outlined here.

You refer to
“The above configuration aliases /static to the location of the Bokeh static resources directory, however it is also possible (and probably preferable) to copy the Bokeh static resources to whatever standard static files location is configured for Apache as part of the deployment”

I am not clear where the Bokeh static resources file would be. Is it in myapp? or in the python package? Sorry if it is clear in the doc’s can’t find it.

The files are in the server/static directory within the Bokeh Python package. You can get the full path by running:

import bokeh
print(bokeh.util.paths.bokehjsdir())
1 Like

Thank you very much