File tree Expand file tree Collapse file tree 5 files changed +18
-12
lines changed Expand file tree Collapse file tree 5 files changed +18
-12
lines changed Original file line number Diff line number Diff line change 1
1
name : kernel_gateway_docs
2
+ channels :
3
+ - defaults
4
+ - conda-forge
2
5
dependencies :
3
- - python=3.5
4
- - sphinx_rtd_theme
5
- - sphinx
6
- - pip :
7
- - recommonmark
6
+ - python=3.7
7
+ - sphinx
8
+ - sphinx_rtd_theme
9
+ - recommonmark
10
+ - pillow
11
+ - pip
12
+ - pip :
13
+ - readthedocs-sphinx-ext
Original file line number Diff line number Diff line change 152
152
# Add any paths that contain custom static files (such as style sheets) here,
153
153
# relative to this directory. They are copied after the builtin static files,
154
154
# so a file named "default.css" will overwrite the builtin "default.css".
155
- html_static_path = ['_static' ]
155
+ # html_static_path = ['_static']
156
156
157
157
# Add any extra paths that contain custom files (such as robots.txt or
158
158
# .htaccess) here, relative to this directory. These files are copied
Original file line number Diff line number Diff line change @@ -40,15 +40,15 @@ make test
40
40
41
41
### Run the gateway server
42
42
43
- Run an instance of the kernel gateway server in [ ` jupyter-websocket ` mode] ( websocket-mode ) .
43
+ Run an instance of the kernel gateway server in [ ` jupyter-websocket ` mode] ( websocket-mode.md ) .
44
44
45
45
``` bash
46
46
make dev
47
47
```
48
48
49
49
Then access the running server at the URL printed in the console.
50
50
51
- Run an instance of the kernel gateway server in [ ` notebook-http ` mode] ( http-mode.html ) using the ` api_intro.ipynb ` notebook in the repository.
51
+ Run an instance of the kernel gateway server in [ ` notebook-http ` mode] ( http-mode.md ) using the ` api_intro.ipynb ` notebook in the repository.
52
52
53
53
``` bash
54
54
make dev-http
Original file line number Diff line number Diff line change 2
2
3
3
The Jupyter Kernel Gateway has the following features:
4
4
5
- * [ ` jupyter-websocket ` mode] ( websocket-mode.html ) which provides a
5
+ * [ ` jupyter-websocket ` mode] ( websocket-mode.md ) which provides a
6
6
Jupyter Notebook server-compatible API for requesting kernels and
7
7
communicating with them using Websockets
8
- * [ ` notebook-http ` mode] ( http-mode.html ) which maps HTTP requests to
8
+ * [ ` notebook-http ` mode] ( http-mode.md ) which maps HTTP requests to
9
9
cells in annotated notebooks
10
10
* Option to enable other kernel communication mechanisms by plugging in third party personalities
11
11
* Option to set a shared authentication token and require it from clients
@@ -18,7 +18,7 @@ The Jupyter Kernel Gateway has the following features:
18
18
in the request
19
19
* Option to pre-populate kernel memory from a notebook
20
20
* Option to serve annotated notebooks as HTTP endpoints, see
21
- [ notebook-http] ( http-mode.html )
21
+ [ notebook-http] ( http-mode.md )
22
22
* Option to allow downloading of the notebook source when running
23
23
in ` notebook-http ` mode
24
24
* Generation of [ Swagger specs] ( http://swagger.io/introducing-the-open-api-initiative/ )
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ The Jupyter Kernel Gateway makes possible the following novel uses of kernels:
11
11
[ tmpnb] ( https://github.com/jupyter/tmpnb ) , [ Binder] ( http://mybinder.org/ ) ,
12
12
or your favorite cluster manager)
13
13
* Create microservices from notebooks via
14
- [ ` notebook-http ` mode] ( http-mode.html )
14
+ [ ` notebook-http ` mode] ( http-mode.md )
15
15
16
16
The following diagram shows how you might use ` tmpnb ` to deploy a pool of kernel gateway instances in Docker containers to support on-demand interactive compute:
17
17
You can’t perform that action at this time.
0 commit comments