You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/simple/README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,12 @@ You can also start the server extension with python modules.
73
73
python -m simple_ext1
74
74
```
75
75
76
+
To live reload the server as you change the extension, you can also enable [the `debug` mode for Tornado](https://www.tornadoweb.org/en/stable/guide/running.html#debug-mode-and-automatic-reloading):
77
+
78
+
```bash
79
+
jupyter server --ServerApp.jpserver_extensions="{'simple_ext1': True}" --ServerApp.tornado_settings="{'debug': True}"
80
+
```
81
+
76
82
## Extension 1 and Extension 2
77
83
78
84
The following command starts both the `simple_ext1` and `simple_ext2` extensions.
0 commit comments