Skip to content

Commit

Permalink
chore: ranking
Browse files Browse the repository at this point in the history
  • Loading branch information
echarles committed Oct 18, 2023
1 parent 76830f6 commit 524ad29
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/docs/cases/dashboarding/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description: Dashboarding.
---

# 🏄 Dashboardig
# 🏄 Dashboarding

A dashboard is a type of graphical user interface which often provides at-a-glance views of key performance indicators (KPIs) relevant to a particular objective or business process. In other usage, "dashboard" is another name for "progress report" or "report" and considered a form of data visualization.

Expand Down
10 changes: 5 additions & 5 deletions docs/docs/develop/setup/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,15 @@ If you just want to develop the core package of the repository, the `@datalayer/
```bash
cd packages/react
yarn build
yarn start # start and example defined in the webpack.config.js file.
```

## Examples
## Simple Example

Now you can start an example and hack the source code. The changes will build automatically and will be available in your browser.

```bash
# open http://localhost:3208
yarn start
yarn start # start and example defined in the packages/react/webpack.config.js file.
```

This will consume kernels from the Datalayer development server in the cloud. You can run your own server with the following command.
Expand All @@ -68,9 +67,8 @@ yarn start-local

The used Jupyter Server configuration is available [in this jupyter_server_config.py](https://github.com/datalayer/jupyter-ui/blob/main/dev/config/jupyter_server_config.py). The important part of that configuration is the `Security` part where the settings for CORS access are defined.

Additionally, you can to define in the head section your host index HTML page information for your React application about the location of your Juptyer Server.
Additionally, you can to define in the head section your host index HTML page information for your React application about the location of your Juptyer Server (see for example the content of this [index-local.html](https://github.com/datalayer/jupyter-ui/blob/main/packages/react/public/index-local.html)).

See for example the content of this [index-local.html](https://github.com/datalayer/jupyter-ui/blob/main/packages/react/public/index-local.html).
```html
<script id="datalayer-config-data" type="application/json">
{
Expand Down Expand Up @@ -99,6 +97,8 @@ If you are using the [JupyterLabApp](/docs/components/jupyterlabapp) component,
</script>
```

## Other Examples

We have more examples, pick one of the following commands and enjoy.

```bash
Expand Down
2 changes: 1 addition & 1 deletion packages/embed/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

[![Become a Sponsor](https://img.shields.io/static/v1?label=Become%20a%20Sponsor&message=%E2%9D%A4&logo=GitHub&style=flat&color=1ABC9C)](https://github.com/sponsors/datalayer)

# 🪐 🌵 Jupyter Embed
# 🪐 🎁 Jupyter Embed
2 changes: 1 addition & 1 deletion packages/react/src/jupyter/lab/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const jupyterReactPlugin: JupyterFrontEndPlugin<void> = {
launcher.add({
command,
category,
rank: 3.4,
rank: 2.4,
});
}
if (settingRegistry) {
Expand Down

0 comments on commit 524ad29

Please sign in to comment.