mirror of
https://github.com/jupyter/notebook.git
synced 2024-11-27 03:20:27 +08:00
96671df358
* Update to jupyter-packaging 0.10 * Update to jupyter-packaging 0.10 on CI * Update pyproject metadata * Update target * Update targets * Update build command * Update MANIFEST.in * Fix build backend * Add build:prod command to packages * Update RELEASE.md * Enable server extension in dev mode * Enable for the notebook server * Fix typo * Add jupyter labextension develop . to the Binder * Update dev instructions
9 lines
205 B
Bash
9 lines
205 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
jlpm && jlpm run build
|
|
python -m pip install -e .
|
|
jupyter labextension develop . --overwrite
|
|
jupyter server extension enable retrolab
|
|
jupyter serverextension enable retrolab
|