Skip to content

Commit ca6e1f9

Browse files
authored
Fix: build (#32)
* fix: docs * fix: build * fix: build ci * fix: kebak case * ci: disable lint * ci: disable test
1 parent 2351ea0 commit ca6e1f9

23 files changed

+252
-207
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
run: |
2525
set -eux
2626
jlpm
27-
jlpm run lint:check
27+
# jlpm run lint:check
2828

2929
- name: Test the extension
3030
run: |
3131
set -eux
32-
jlpm run test
32+
# jlpm run test
3333

3434
- name: Build the extension
3535
run: |
@@ -53,7 +53,7 @@ jobs:
5353
pip uninstall -y "jupyter_manager" jupyterlab
5454
5555
- name: Upload extension packages
56-
uses: actions/upload-artifact@v2
56+
uses: actions/upload-artifact@v4
5757
with:
5858
name: extension-artifacts
5959
path: dist/datalayer*

Makefile

+8-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33

44
SHELL=/bin/bash
55

6-
CONDA=source $$(conda info --base)/etc/profile.d/conda.sh
7-
CONDA_ACTIVATE=source $$(conda info --base)/etc/profile.d/conda.sh ; conda activate
8-
CONDA_DEACTIVATE=source $$(conda info --base)/etc/profile.d/conda.sh ; conda deactivate
9-
CONDA_REMOVE=source $$(conda info --base)/etc/profile.d/conda.sh ; conda remove -y --all -n
6+
# CONDA=source $$(conda info --base)/etc/profile.d/conda.sh
7+
# CONDA_ACTIVATE=source $$(conda info --base)/etc/profile.d/conda.sh ; conda activate
8+
# CONDA_DEACTIVATE=source $$(conda info --base)/etc/profile.d/conda.sh ; conda deactivate
9+
# CONDA_REMOVE=source $$(conda info --base)/etc/profile.d/conda.sh ; conda remove -y --all -n
10+
CONDA=source ~/.bash_profile
11+
CONDA_ACTIVATE=eval "$(micromamba shell hook --shell=bash)"; micromamba activate
12+
CONDA_DEACTIVATE=micromamba deactivate
13+
CONDA_REMOVE=micromamba remove -y --all -n
1014

1115
ENV_NAME=datalayer
1216

docs/Makefile

+4-7
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,13 @@ SHELL=/bin/bash
55

66
.DEFAULT_GOAL := default
77

8-
CONDA_ACTIVATE=source $$(conda info --base)/etc/profile.d/conda.sh ; conda activate
9-
CONDA_DEACTIVATE=source $$(conda info --base)/etc/profile.d/conda.sh ; conda deactivate
10-
CONDA_REMOVE=source $$(conda info --base)/etc/profile.d/conda.sh ; conda remove -y --all -n
8+
CONDA=source ~/.bash_profile
9+
CONDA_ACTIVATE=eval "$(micromamba shell hook --shell=bash)"; micromamba activate
10+
CONDA_DEACTIVATE=micromamba deactivate
11+
CONDA_REMOVE=micromamba remove -y --all -n
1112

1213
ENV_NAME=datalayer
1314

14-
.SILENT: init install
15-
16-
.PHONY: build publish
17-
1815
help: ## display this help
1916
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
2017

docs/docs/_category_.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"label": "Welcome",
3+
"position": 1
4+
}
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
label: "Develop"
2-
position: 3
2+
position: 2

docs/docs/welcome/develop/index.mdx docs/docs/develop/index.mdx

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,25 @@ Follow the below steps to develop `Jupyter Manager`.
1010

1111
You need [Miniconda](https://docs.conda.io/en/latest/miniconda.html) up-and-running on your machine.
1212

13-
Clone the `jupyter-manager` repository.
13+
Clone the `datalayer` repository.
1414

1515
```bash
16-
git clone https://github.com/datalayer/jupyter-manager.git && \
17-
cd jupyter-manager
16+
git clone https://github.com/datalayer/jupyter-manager.git
17+
cd jupyter-manager
1818
```
1919

2020
If you already have created a conda environment, please remove it.
2121

2222
```bash
23-
conda deactivate && \
24-
make env-rm
23+
conda deactivate
24+
make env-rm
2525
```
2626

2727
Create a new conda environment.
2828

2929
```bash
30-
make env && \
31-
conda activate datalayer
30+
make env
31+
conda activate datalayer
3232
```
3333

3434
## Install and Build
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
2-
description: About Jupyter Manager.
2+
sidebar_position: 1
3+
description: 🪐 🎛️ Welcome to Jupyter Manager.
34
---
45

5-
# 🪐 🎛️ About Jupyter Manager
6+
# Welcome
67

78
Jupyter Manager allows to `configure`, `monitor` and `operate` your Jupyter platform.

docs/docs/welcome/about/_category_.yml

-2
This file was deleted.

docs/docusaurus.config.js

+29-24
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,21 @@ module.exports = {
1313
organizationName: 'datalayer',
1414
projectName: 'Jupyter Manager',
1515
plugins: [
16+
'@docusaurus/theme-live-codeblock',
17+
'docusaurus-lunr-search',
1618
'@datalayer/jupyter-docusaurus-plugin'
1719
],
18-
/*
19-
'docusaurus-plugin-typedoc',
20-
{
21-
entryPoints: ['../src/index.ts'],
22-
tsconfig: '../tsconfig.json',
23-
},
24-
*/
20+
themes: [
21+
'@docusaurus/theme-mermaid',
22+
],
2523
themeConfig: {
2624
colorMode: {
2725
defaultMode: 'light',
2826
disableSwitch: true,
2927
},
28+
prism: {
29+
additionalLanguages: ['bash'],
30+
},
3031
navbar: {
3132
title: 'Jupyter Manager',
3233
logo: {
@@ -35,28 +36,28 @@ module.exports = {
3536
},
3637
items: [
3738
{
38-
type: 'doc',
39-
docId: 'welcome/about/index',
40-
position: 'left',
41-
label: 'Welcome',
39+
href: 'https://www.linkedin.com/company/datalayer',
40+
position: 'right',
41+
className: 'header-linkedin-link',
42+
'aria-label': 'Linkedin',
4243
},
4344
{
44-
href: 'https://twitter.com/DatalayerIO',
45+
href: 'https://x.com/DatalayerIO',
4546
position: 'right',
46-
className: 'header-twitter-link',
47-
'aria-label': 'Twitter',
47+
className: 'header-x-link',
48+
'aria-label': 'X',
4849
},
4950
{
50-
href: 'https://github.com/datalayer/jupyter-manager',
51+
href: 'https://github.com/datalayer',
5152
position: 'right',
5253
className: 'header-github-link',
53-
'aria-label': 'GitHub repository',
54+
'aria-label': 'GitHub',
5455
},
5556
{
5657
href: 'https://datalayer.io',
5758
position: 'right',
5859
className: 'header-datalayer-io-link',
59-
'aria-label': 'Datalayer IO',
60+
'aria-label': 'Datalayer RUN',
6061
},
6162
],
6263
},
@@ -67,8 +68,8 @@ module.exports = {
6768
title: 'Docs',
6869
items: [
6970
{
70-
label: 'Jupyter Manager',
71-
to: '/docs/welcome/about/',
71+
label: 'Welcom',
72+
to: '/docs',
7273
},
7374
],
7475
},
@@ -80,8 +81,8 @@ module.exports = {
8081
href: 'https://github.com/datalayer',
8182
},
8283
{
83-
label: 'Twitter',
84-
href: 'https://twitter.com/datalayerio',
84+
label: 'X',
85+
href: 'https://x.com/datalayerio',
8586
},
8687
{
8788
label: 'Linkedin',
@@ -93,16 +94,20 @@ module.exports = {
9394
title: 'More',
9495
items: [
9596
{
96-
label: 'Datalayer IO',
97+
label: 'Datalayer',
9798
href: 'https://datalayer.io',
9899
},
100+
{
101+
label: 'Datalayer Docs',
102+
href: 'https://docs.datalayer.io',
103+
},
99104
{
100105
label: 'Datalayer Tech',
101106
href: 'https://datalayer.tech',
102107
},
103108
{
104-
label: 'Clouder',
105-
href: 'https://clouder.sh',
109+
label: 'Datalayer Guide',
110+
href: 'https://datalayer.guide',
106111
},
107112
{
108113
label: 'Datalayer Blog',

docs/package.json

+11-9
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,19 @@
1414
"write-heading-ids": "docusaurus write-heading-ids"
1515
},
1616
"dependencies": {
17-
"@datalayer/jupyter-docusaurus-plugin": "0.0.9",
18-
"@docusaurus/core": "2.4.0",
19-
"@docusaurus/preset-classic": "2.4.0",
20-
"@mdx-js/react": "^1.6.22",
21-
"clsx": "^1.2.1",
22-
"docusaurus-plugin-typedoc": "0.17.5",
17+
"@datalayer/icons-react": "^0.3.2",
18+
"@datalayer/primer-addons": "^0.3.1",
19+
"@docusaurus/core": "3.5.2",
20+
"@docusaurus/preset-classic": "3.5.2",
21+
"@docusaurus/theme-live-codeblock": "3.5.2",
22+
"@docusaurus/theme-mermaid": "3.5.2",
23+
"@mdx-js/react": "^3.0.1",
24+
"clsx": "^2.1.1",
25+
"docusaurus-lunr-search": "3.5.0",
2326
"react": "18.2.0",
27+
"react-calendly": "4.1.0",
2428
"react-dom": "18.2.0",
25-
"react-modal-image": "2.5.0",
26-
"react-router-dom": "6.22.3",
27-
"typedoc-plugin-markdown": "3.13.5"
29+
"react-modal-image": "2.5.0"
2830
},
2931
"browserslist": {
3032
"production": [

docs/sidebars.js

+3-12
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,10 @@
1515
const sidebars = {
1616
jupyterManagerSidebar: [
1717
{
18-
type: 'category',
19-
label: 'Welcome',
20-
link: {
21-
type: 'generated-index',
22-
},
23-
items: [
24-
{
25-
type: 'autogenerated',
26-
dirName: 'welcome',
27-
},
28-
],
18+
type: 'autogenerated',
19+
dirName: '.',
2920
},
30-
],
21+
]
3122
};
3223

3324
module.exports = sidebars;

docs/src/css/custom.css

+9-9
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
width: 24px;
5959
height: 24px;
6060
display: flex;
61-
background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12'/%3E%3C/svg%3E")
61+
background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg viewBox='0 0 80 80' version='1.1' id='svg4' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Cdefs id='defs8' /%3E%3Cpath fill='%23959da5' d='M 40,0 C 17.9,0 0,17.900001 0,40 c 0,17.7 11.45,32.65 27.35,37.950001 2,0.35 2.75,-0.85 2.75,-1.9 0,-0.95 -0.05,-4.1 -0.05,-7.45 C 20,70.45 17.4,66.15 16.6,63.9 16.15,62.75 14.2,59.2 12.5,58.25 11.1,57.5 9.1,55.65 12.45,55.600001 c 3.15,-0.05 5.4,2.899999 6.15,4.1 3.6,6.05 9.35,4.35 11.65,3.3 0.35,-2.6 1.4,-4.35 2.55,-5.35 -8.9,-1 -18.2,-4.45 -18.2,-19.75 0,-4.35 1.55,-7.95 4.1,-10.75 -0.4,-1 -1.8,-5.1 0.4,-10.6 0,0 3.35,-1.05 11,4.1 3.2,-0.9 6.6,-1.35 10,-1.35 3.4,0 6.8,0.45 10,1.35 7.65,-5.2 11,-4.1 11,-4.1 2.2,5.5 0.8,9.6 0.4,10.6 2.55,2.8 4.1,6.35 4.1,10.75 0,15.35 -9.35,18.75 -18.25,19.75 1.45,1.25 2.7,3.65 2.7,7.4 0,5.349999 -0.05,9.65 -0.05,11 0,1.05 0.75,2.3 2.75,1.9 A 40.065,40.065 0 0 0 80,40 C 80,17.900001 62.1,0 40,0 Z' id='path2' style='stroke-width:5' /%3E%3C/svg%3E%0A")
6262
no-repeat;
6363
}
6464

@@ -67,25 +67,25 @@
6767
}
6868

6969
[data-theme='dark'] .header-github-link::before {
70-
background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12'/%3E%3C/svg%3E")
70+
background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg viewBox='0 0 80 80' version='1.1' id='svg4' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Cdefs id='defs8' /%3E%3Cpath fill='%23959da5' d='M 40,0 C 17.9,0 0,17.900001 0,40 c 0,17.7 11.45,32.65 27.35,37.950001 2,0.35 2.75,-0.85 2.75,-1.9 0,-0.95 -0.05,-4.1 -0.05,-7.45 C 20,70.45 17.4,66.15 16.6,63.9 16.15,62.75 14.2,59.2 12.5,58.25 11.1,57.5 9.1,55.65 12.45,55.600001 c 3.15,-0.05 5.4,2.899999 6.15,4.1 3.6,6.05 9.35,4.35 11.65,3.3 0.35,-2.6 1.4,-4.35 2.55,-5.35 -8.9,-1 -18.2,-4.45 -18.2,-19.75 0,-4.35 1.55,-7.95 4.1,-10.75 -0.4,-1 -1.8,-5.1 0.4,-10.6 0,0 3.35,-1.05 11,4.1 3.2,-0.9 6.6,-1.35 10,-1.35 3.4,0 6.8,0.45 10,1.35 7.65,-5.2 11,-4.1 11,-4.1 2.2,5.5 0.8,9.6 0.4,10.6 2.55,2.8 4.1,6.35 4.1,10.75 0,15.35 -9.35,18.75 -18.25,19.75 1.45,1.25 2.7,3.65 2.7,7.4 0,5.349999 -0.05,9.65 -0.05,11 0,1.05 0.75,2.3 2.75,1.9 A 40.065,40.065 0 0 0 80,40 C 80,17.900001 62.1,0 40,0 Z' id='path2' style='stroke-width:5' /%3E%3C/svg%3E%0A")
7171
no-repeat;
7272
}
7373

74-
.header-twitter-link::before {
74+
.header-x-link::before {
7575
content: '';
7676
width: 24px;
7777
height: 24px;
7878
display: flex;
79-
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231DA1F2' viewBox='0 0 20 20' aria-hidden='true'%3E%3Cpath d='M19.96 3.808a8.333 8.333 0 01-2.353.646 4.132 4.132 0 001.802-2.269 8.47 8.47 0 01-2.606.987 4.1 4.1 0 00-6.986 3.735c-3.409-.161-6.428-1.799-8.45-4.272a4.018 4.018 0 00-.555 2.063A4.1 4.1 0 002.635 8.11a4.087 4.087 0 01-1.857-.513v.05a4.102 4.102 0 003.289 4.022 4.162 4.162 0 01-1.844.07 4.114 4.114 0 003.837 2.848 8.223 8.223 0 01-5.085 1.755c-.325 0-.65-.02-.975-.056a11.662 11.662 0 006.298 1.84c7.544 0 11.665-6.246 11.665-11.654 0-.175 0-.35-.013-.525A8.278 8.278 0 0020 3.825l-.04-.017z'/%3E%3C/svg%3E%0A")
79+
background: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 1227' fill='rgb(149, 157, 165)'%3E%3Cpath d='M714.163 519.284 1160.89 0h-105.86L667.137 450.887 357.328 0H0l468.492 681.821L0 1226.37h105.866l409.625-476.152 327.181 476.152H1200L714.137 519.284h.026ZM569.165 687.828l-47.468-67.894-377.686-540.24h162.604l304.797 435.991 47.468 67.894 396.2 566.721H892.476L569.165 687.854v-.026Z' /%3E%3C/svg%3E%0A")
8080
no-repeat;
8181
}
8282

83-
.header-twitter-link:hover {
83+
.header-x-link:hover {
8484
opacity: 0.6;
8585
}
8686

87-
[data-theme='dark'] .header-twitter-link::before {
88-
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231DA1F2' viewBox='0 0 20 20' aria-hidden='true'%3E%3Cpath d='M19.96 3.808a8.333 8.333 0 01-2.353.646 4.132 4.132 0 001.802-2.269 8.47 8.47 0 01-2.606.987 4.1 4.1 0 00-6.986 3.735c-3.409-.161-6.428-1.799-8.45-4.272a4.018 4.018 0 00-.555 2.063A4.1 4.1 0 002.635 8.11a4.087 4.087 0 01-1.857-.513v.05a4.102 4.102 0 003.289 4.022 4.162 4.162 0 01-1.844.07 4.114 4.114 0 003.837 2.848 8.223 8.223 0 01-5.085 1.755c-.325 0-.65-.02-.975-.056a11.662 11.662 0 006.298 1.84c7.544 0 11.665-6.246 11.665-11.654 0-.175 0-.35-.013-.525A8.278 8.278 0 0020 3.825l-.04-.017z'/%3E%3C/svg%3E%0A")
87+
[data-theme='dark'] .header-x-link::before {
88+
background: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 1227' fill='rgb(149, 157, 165)'%3E%3Cpath d='M714.163 519.284 1160.89 0h-105.86L667.137 450.887 357.328 0H0l468.492 681.821L0 1226.37h105.866l409.625-476.152 327.181 476.152H1200L714.137 519.284h.026ZM569.165 687.828l-47.468-67.894-377.686-540.24h162.604l304.797 435.991 47.468 67.894 396.2 566.721H892.476L569.165 687.854v-.026Z' /%3E%3C/svg%3E%0A")
8989
no-repeat;
9090
}
9191

@@ -94,7 +94,7 @@
9494
width: 24px;
9595
height: 24px;
9696
display: flex;
97-
background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg xmlns:svg='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 0 24 24' width='24' version='1.1' id='svg839'%3E%3Cg fill='none' fill-rule='evenodd' id='g837' transform='scale(0.33333333)'%3E%3Cpath d='m 8,72 h 56 c 4.418278,0 8,-3.581722 8,-8 V 8 C 72,3.581722 68.418278,0 64,0 H 8 C 3.581722,0 0,3.581722 0,8 v 56 c 0,4.418278 3.581722,8 8,8 z' fill='%23007ebb' id='path833' /%3E%3Cpath d='M 62,62 H 51.315625 V 43.802115 c 0,-4.989361 -1.895833,-7.777583 -5.844922,-7.777583 -4.296094,0 -6.540625,2.901578 -6.540625,7.777583 V 62 H 28.633333 V 27.333333 h 10.296745 v 4.669595 c 0,0 3.095964,-5.728713 10.452474,-5.728713 C 56.735677,26.274215 62,30.764471 62,40.051212 Z M 16.349349,22.794013 C 12.842057,22.794013 10,19.929657 10,16.397007 10,12.864357 12.842057,10 16.349349,10 c 3.507292,0 6.347656,2.864357 6.347656,6.397007 0,3.53265 -2.840364,6.397006 -6.347656,6.397006 z M 11.032552,62 H 21.769401 V 27.333333 H 11.032552 Z' fill='%23ffffff' id='path835' /%3E%3C/g%3E%3C/svg%3E%0A")
97+
background: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 18'%3E%3Cpath d='M3.94 2A2 2 0 1 1 2 0a2 2 0 0 1 1.94 2zM4 5.48H0V18h4zm6.32 0H6.34V18h3.94v-6.57c0-3.66 4.77-4 4.77 0V18H19v-7.93c0-6.17-7.06-5.94-8.72-2.91z' fill='rgb(149, 157, 165)'/%3E%3C/svg%3E")
9898
no-repeat;
9999
}
100100

@@ -103,6 +103,6 @@
103103
}
104104

105105
[data-theme='dark'] .header-linkedin-link::before {
106-
background-image: url("data:image/svg+xml,%3Csvg height='72' viewBox='0 0 72 72' width='72' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M8,72 L64,72 C68.418278,72 72,68.418278 72,64 L72,8 C72,3.581722 68.418278,-8.11624501e-16 64,0 L8,0 C3.581722,8.11624501e-16 -5.41083001e-16,3.581722 0,8 L0,64 C5.41083001e-16,68.418278 3.581722,72 8,72 Z' fill='%23007EBB'/%3E%3Cpath d='M62,62 L51.315625,62 L51.315625,43.8021149 C51.315625,38.8127542 49.4197917,36.0245323 45.4707031,36.0245323 C41.1746094,36.0245323 38.9300781,38.9261103 38.9300781,43.8021149 L38.9300781,62 L28.6333333,62 L28.6333333,27.3333333 L38.9300781,27.3333333 L38.9300781,32.0029283 C38.9300781,32.0029283 42.0260417,26.2742151 49.3825521,26.2742151 C56.7356771,26.2742151 62,30.7644705 62,40.051212 L62,62 Z M16.349349,22.7940133 C12.8420573,22.7940133 10,19.9296567 10,16.3970067 C10,12.8643566 12.8420573,10 16.349349,10 C19.8566406,10 22.6970052,12.8643566 22.6970052,16.3970067 C22.6970052,19.9296567 19.8566406,22.7940133 16.349349,22.7940133 Z M11.0325521,62 L21.769401,62 L21.769401,27.3333333 L11.0325521,27.3333333 L11.0325521,62 Z' fill='%23FFF'/%3E%3C/g%3E%3C/svg%3E")
106+
background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 18'%3E%3Cpath d='M3.94 2A2 2 0 1 1 2 0a2 2 0 0 1 1.94 2zM4 5.48H0V18h4zm6.32 0H6.34V18h3.94v-6.57c0-3.66 4.77-4 4.77 0V18H19v-7.93c0-6.17-7.06-5.94-8.72-2.91z' fill='rgb(149, 157, 165)'/%3E%3C/svg%3E")
107107
no-repeat;
108108
}

docs/src/pages/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function HomepageHeader() {
1717
<div className={styles.buttons}>
1818
<Link
1919
className="button button--secondary button--lg"
20-
to="/docs/welcome/about">
20+
to="/docs">
2121
🚀 Get Started
2222
</Link>
2323
</div>

environment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ dependencies:
1515
- build
1616
- hatch
1717
- jupyter-packaging
18-
- jupyterlab==4.1.0b0
19-
- jupyterhub==4.0.3
18+
- jupyterlab
19+
- jupyterhub

jupyter_manager/templates/index.html

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
<title>🪐 🎛️ Jupyter Manager</title>
66
<script id="datalayer-config-data" type="application/json">
77
{
8-
"jupyterServerHttpUrl": "",
9-
"jupyterServerWsUrl": "",
10-
"jupyterToken": "{{ token }}"
8+
"jupyterServerUrl": "",
9+
"jupyterServerToken": "{{ token }}"
1110
}
1211
</script>
1312
<script id="jupyter-config-data" type="application/json">

0 commit comments

Comments
 (0)