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
-[Installing the Package](#installing-the-package)
18
19
19
20
## The template folder structure
@@ -565,7 +566,7 @@ done using [hatch](https://hatch.pypa.io/) builder with some additional plugins:
565
566
-[hatch-jupyter-builder](https://github.com/jupyterlab/hatch-jupyter-builder/): Builder plugin to build Jupyter JavaScript assets as part of the Python package.
566
567
Its configuration is done in `pyproject.toml`:
567
568
568
-
```
569
+
```toml
569
570
# pyproject.toml
570
571
571
572
[build-system]
@@ -758,6 +759,18 @@ And that server extension is available through `pip`:
758
759
759
760
For more information on the `discovery` metadata, please refer to the [documentation](https://jupyterlab.readthedocs.io/en/stable/extension/extension_dev.html#ext-author-companion-packages).
760
761
762
+
## Development
763
+
764
+
While developing your server extension, you can run JupyterLab and enable server reloading using the following command:
765
+
766
+
```bash
767
+
jupyter lab --autoreload --no-browser
768
+
```
769
+
770
+
This way, every time there is a change to the backend (server) code, JupyterLab is automatically relaunched, picking up the most recent changes.
771
+
772
+
The `--no-browser` flag is optional, but it helps prevent a new browser tab from opening each time JupyterLab is launched.
773
+
761
774
## Installing the Package
762
775
763
776
With the packaging described above, installing the extension is done in one command once the package is published on pypi.org:
0 commit comments