mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-31 13:40:29 +08:00
Add documentation for contributing to the docs (#6771)
* Develop docs on Gitpod * Add documentation section to the contributing docs * Add a section for contributing from the browser * typo fix * fix link in contributing * Add Gitpod badge * fix auto activate
This commit is contained in:
parent
f05e5a985d
commit
7963a791ac
10
.gitpod.yml
10
.gitpod.yml
@ -43,5 +43,15 @@ tasks:
|
||||
echo "source /workspace/bin/activate-env.sh" >> ~/.bashrc
|
||||
source /workspace/bin/activate-env.sh
|
||||
|
||||
- name: docs
|
||||
command: |
|
||||
gp sync-await setup
|
||||
sudo apt-get update
|
||||
sudo apt install enchant-2 -y
|
||||
wget https://github.com/jgm/pandoc/releases/download/2.14.2/pandoc-2.14.2-1-amd64.deb -O /tmp/pandoc.deb && sudo dpkg -i /tmp/pandoc.deb
|
||||
source /workspace/bin/activate-env.sh
|
||||
hatch run docs:build
|
||||
hatch run docs:serve
|
||||
|
||||
ports:
|
||||
- port: 8888
|
||||
|
@ -152,3 +152,29 @@ automatically on save.
|
||||
|
||||
Some of the hooks only run on CI by default, but you can invoke them by
|
||||
running with the `--hook-stage manual` argument.
|
||||
|
||||
## Documentation
|
||||
|
||||
First make sure you have set up a development environment as described above.
|
||||
|
||||
Then run the following command to build the docs:
|
||||
|
||||
```shell
|
||||
hatch run docs:build
|
||||
```
|
||||
|
||||
In a separate terminal window, run the following command to serve the documentation:
|
||||
|
||||
```shell
|
||||
hatch run docs:serve
|
||||
```
|
||||
|
||||
Now open a web browser and navigate to `http://localhost:8000` to access the documentation.
|
||||
|
||||
## Contributing from the browser
|
||||
|
||||
Alternatively you can also contribute to Jupyter Notebook without setting up a local environment, directly from a web browser:
|
||||
|
||||
- [Gitpod](https://gitpod.io/#https://github.com/jupyter/notebook) integration is enabled. The Gitpod config automatically builds the Jupyter Notebook application and the documentation.
|
||||
- GitHub’s [built-in editor](https://docs.github.com/en/repositories/working-with-files/managing-files/editing-files) is suitable for contributing small fixes
|
||||
- A more advanced [github.dev](https://docs.github.com/en/codespaces/the-githubdev-web-based-editor) editor can be accessed by pressing the dot (.) key while in the Jupyter Notebook GitHub repository,
|
||||
|
@ -4,6 +4,7 @@
|
||||
[](https://jupyter-notebook.readthedocs.io/en/latest/?badge=latest)
|
||||
[](https://mybinder.org/v2/gh/jupyter/notebook/main?urlpath=tree)
|
||||
[](https://codecov.io/gh/jupyter/notebook)
|
||||
[](https://gitpod.io/#https://github.com/jupyter/notebook)
|
||||
|
||||
The Jupyter notebook is a web-based notebook environment for interactive
|
||||
computing.
|
||||
|
@ -116,6 +116,7 @@ include = ["/notebook"]
|
||||
features = ["docs"]
|
||||
[tool.hatch.envs.docs.scripts]
|
||||
build = "make -C docs html SPHINXOPTS='-W'"
|
||||
serve = "cd docs/build/html && python -m http.server"
|
||||
|
||||
[tool.hatch.envs.default.scripts]
|
||||
npm_pack = "jlpm lerna exec -- npm pack"
|
||||
|
Loading…
x
Reference in New Issue
Block a user