Add new bokeh App

Is there any way I can add new bokeh App to the already running Bokeh Server? thanks in advance

There is no supported meachnism to do this.

How about I stop the bokeh server then create new list of bokeh applications then start the server again? thanks

That’s certainly a potentially reasonable approach, depending on your requirements. Process orchestration is a giant topic with scope way beyond just Bokeh, so there are lots of possibilities. Another idea is to run every app on a different process with a different port, and then use a proxy (e.g. Nginx) in front to map different URLs to the different ports internally. Then you could potentially add new apps by just starting a new Bokeh server process (without shutting down anything already running) then re-HUP the proxy with an updated configuration.