forked from deathbeds/jupyterlab-starters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjupyter_notebook_config.json
91 lines (91 loc) · 3.06 KB
/
jupyter_notebook_config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"StarterManager": {
"extra_jinja_env_extensions": {
"jinja2_time.TimeExtension": true
},
"extra_starters": {
"notebook-starter": {
"type": "notebook",
"src": "./examples/Starter Notebook.ipynb",
"label": "Starter Notebook",
"description": "A notebook that is also a starter",
"category": "Notebooks"
},
"multi-stage-notebook": {
"type": "notebook",
"src": "./examples/Multi-Stage Starter Notebook.ipynb",
"label": "Multi-Stage Starter Notebook",
"description": "Build a directory one file at a time",
"category": "Notebooks"
},
"whitepaper-single": {
"type": "copy",
"label": "Whitepaper Notebook",
"description": "A reusable notebook for proposing research",
"category": "Notebooks",
"src": "examples/whitepaper-single.ipynb"
},
"whitepaper-multiple": {
"type": "copy",
"label": "Whitepaper Folder",
"description": "Some reusable notebooks for proposing research",
"category": "Notebooks",
"icon": "<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><g class='jp-icon-contrast1' fill='#ccc'><circle cx='24' cy='24' r='24'/></g></svg>",
"src": "examples/whitepaper-multiple"
},
"whitepaper-named": {
"type": "copy",
"label": "Named Whitepaper",
"description": "A renamed whitepaper",
"category": "Notebooks",
"src": "examples/whitepaper-single.ipynb",
"dest": "{% now 'local' %} {{ dest }} Whitepaper.ipynb",
"icon": "<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g class='jp-icon-contrast3' fill='#ccc'><rect width='100' height='100'/></g></svg>",
"uiSchema": {
"dest": {
"ui:help": "keep it short and simple: it will go in $1$ file named: `<topic> Whitepaper.ipynb`",
"ui:autofocus": true
}
},
"schema": {
"title": "# A Named whitepaper",
"description": "> A whitepaper that already has a name, based on the [Heilmeier Catechism](https://www.darpa.mil/work-with-us/heilmeier-catechism).",
"type": "object",
"required": ["dest"],
"properties": {
"dest": {
"title": "## Topic",
"description": "the _topic_ of the whitepaper",
"type": "string",
"default": "Unimagined"
}
}
}
}
}
},
"ServerProxy": {
"servers": {
"docs": {
"command": [
"python3",
"-m",
"sphinx_autobuild",
"/home/jovyan/docs",
"/home/jovyan/build/docs/html",
"--no-initial",
"--port",
"{port}"
],
"timeout": 300,
"new_browser_tab": false,
"absolute_url": false,
"launcher_entry": {
"icon_path": "/home/jovyan/packages/jupyterlab-starters/style/icons/starter.svg",
"enabled": true,
"title": "Starters Documentation"
}
}
}
}
}