Skip to content

Commit

Permalink
added --autoreload flag to NotebookApp (#4795)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
telamonian authored May 23, 2020
1 parent 7fbbe79 commit 01e298f
Show file tree
Hide file tree
Showing 2 changed files with 110 additions and 83 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,12 @@ config.rst
package-lock.json
geckodriver.log
*.iml

# jetbrains IDE stuff
*.iml
.idea/

# ms IDE stuff
*.code-workspace
.history
.vscode
Loading

0 comments on commit 01e298f

Please sign in to comment.