Skip to content

Commit 5c873e3

Browse files
authored
Merge pull request #153 from datalayer-contrib/docs-0.2.0
Update docs for 0.2.0 release
2 parents 6c88b31 + 47167dc commit 5c873e3

File tree

4 files changed

+45
-2
lines changed

4 files changed

+45
-2
lines changed

docs/source/changelog.rst

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,19 @@ We strongly recommend that you upgrade to version 9+ of pip before upgrading ``j
2121
Use ``pip install pip --upgrade`` to upgrade pip. Check pip version with
2222
``pip --version``.
2323

24+
.. _release-0.0.2:
25+
26+
0.0.2
27+
-----
28+
29+
- Introduce new extension module
30+
- Pytest for unit tests
31+
- Server documentation
32+
- NbClassic for migration from notebook
33+
2434
.. _release-0.0.1:
2535

2636
0.0.1
2737
-----
2838

29-
First release of the Jupyter Server.
39+
- First release of the Jupyter Server.

docs/source/frontends.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,3 +131,9 @@ To make your frontend executable from anywhere on your system, added this method
131131
]
132132
}
133133
)
134+
135+
Examples
136+
--------
137+
138+
You can check some simple example on the `GitHub jupyter_server repository
139+
<https://github.com/jupyter/jupyter_server/tree/master/jupyter_server/example/simple>`_.

docs/source/index.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ To install the latest release of ``jupyter_server``, use *pip*:
3232
:caption: Configuration
3333

3434
config_overview
35-
config.rst
35+
config
36+
migrate_from_notebook
3637
public_server
3738
security
3839
extending/index.rst

docs/source/migrate_from_notebook.rst

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
.. _migrate_from_notebook:
2+
3+
Migrate from Notebook
4+
=====================
5+
6+
To migrate from notebook server to plain jupyter server, follow these steps:
7+
8+
- Rename your ``jupyter_notebook_config.py`` file to ``jupyter_server_config.py``.
9+
- Rename all ``c.NotebookApp`` traits to ``c.ServerApp``.
10+
11+
For example if you have the following ``jupyter_notebook_config.py``.
12+
13+
.. code-block:: python
14+
15+
c.NotebookApp.allow_credentials = False
16+
c.NotebookApp.port = 8889
17+
c.NotebookApp.password_required = True
18+
19+
20+
You will have to create the following ``jupyter_server_config.py`` file.
21+
22+
.. code-block:: python
23+
24+
c.ServerApp.allow_credentials = False
25+
c.ServerApp.port = 8889
26+
c.ServerApp.password_required = True

0 commit comments

Comments
 (0)