Skip to content

Commit 01e298f

Browse files
authored
added --autoreload flag to NotebookApp (#4795)
* added `--autoreload` flag When passed, the webapp will watch for any changes to its Python source. On change, all changed packages will be reimported and the webapp will restart. Also works on Python source files in Jupyter server extensions. Implemented using the built in `autoreload` parameter in the constructor of `tornado.web.Application`. * updated .gitignore
1 parent 7fbbe79 commit 01e298f

File tree

2 files changed

+110
-83
lines changed

2 files changed

+110
-83
lines changed

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,12 @@ config.rst
4242
package-lock.json
4343
geckodriver.log
4444
*.iml
45+
46+
# jetbrains IDE stuff
47+
*.iml
48+
.idea/
49+
50+
# ms IDE stuff
51+
*.code-workspace
52+
.history
53+
.vscode

0 commit comments

Comments
 (0)