We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b13028 commit 38947bbCopy full SHA for 38947bb
jupyter_server/extension/application.py
@@ -7,6 +7,7 @@
7
Unicode,
8
List,
9
Dict,
10
+ Bool,
11
default,
12
validate
13
)
@@ -205,6 +206,14 @@ def static_url_prefix(self):
205
206
help=_("""Handlers appended to the server.""")
207
).tag(config=True)
208
209
+ open_browser = Bool(False,
210
+ help=_("""Whether to open in a browser after starting.
211
+ The specific browser used is platform dependent and
212
+ determined by the python standard library `webbrowser`
213
+ module, unless it is overridden using the --browser
214
+ (ServerApp.browser) configuration option.
215
+ """)).tag(config=True)
216
+
217
def _config_file_name_default(self):
218
"""The default config file name."""
219
if not self.extension_name:
0 commit comments