Skip to content

Commit

Permalink
Feature: add elixir note server
Browse files Browse the repository at this point in the history
  • Loading branch information
ciusji committed Apr 23, 2022
1 parent e0fbf77 commit 6145c76
Show file tree
Hide file tree
Showing 291 changed files with 33,525 additions and 43 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Check Release

on:
push:
branches: [3.2.x]
branches: [3.3.x]
pull_request:
branches: [3.2.x]
branches: [3.3.x]
release:
types: [published]

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ name: "CodeQL"

on:
push:
branches: [3.2.x]
branches: [3.3.x]
pull_request:
# The branches below must be a subset of the branches above
branches: [3.2.x]
branches: [3.3.x]
schedule:
- cron: '0 8 * * 3'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linuxjs-flaky-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Linux JS Flaky Tests

on:
push:
branches: [3.2.x]
branches: [3.3.x]
pull_request:
branches: [3.2.x]
branches: [3.3.x]
release:
types: [published]

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linuxjs-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Linux JS Tests

on:
push:
branches: [3.2.x]
branches: [3.3.x]
pull_request:
branches: [3.2.x]
branches: [3.3.x]
release:
types: [published]

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linuxtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Linux Tests

on:
push:
branches: [3.2.x]
branches: [3.3.x]
pull_request:
branches: [3.2.x]
branches: [3.3.x]
release:
types: [published]

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macostests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: macOS Tests

on:
push:
branches: [3.2.x]
branches: [3.3.x]
pull_request:
branches: [3.2.x]
branches: [3.3.x]
release:
types: [published]

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windowstests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Windows Tests

on:
push:
branches: [3.2.x]
branches: [3.3.x]
pull_request:
branches: [3.2.x]
branches: [3.3.x]
release:
types: [published]

Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ jupyter lab build # Build the app dir assets (optional)
Start up JupyterLab using:

```bash
mkdir -p /data/notebooks
jupyter lab --dev-mode --watch --allow-root --no-browser --notebook-dir=/data/notebooks --ip=0.0.0.0
jupyter lab --dev-mode --watch --allow-root --no-browser --ip=0.0.0.0
```

JupyterLab will open automatically in the browser. See the [documentation](http://jupyterlab.readthedocs.io/en/3.3.x/getting_started/starting.html) for additional details.
Expand Down
19 changes: 6 additions & 13 deletions packages/ui-components/style/icons/jupyter/jupyter-favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions packages/ui-components/style/icons/jupyter/jupyter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 4 additions & 10 deletions packages/ui-components/style/icons/jupyter/jupyterlab-wordmark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions server/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["es2015"]
}
5 changes: 5 additions & 0 deletions server/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*.min.js
*components*
*node_modules*
*built*
*build*
13 changes: 13 additions & 0 deletions server/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"semi": 1,
"no-cond-assign": 2,
"no-debugger": 2,
"comma-dangle": 0,
"no-unreachable": 2
}
}
2 changes: 2 additions & 0 deletions server/.git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Initial pre-commit reformat
42fe3bb4188a1fbd1810674776e7855cd529b8fc
2 changes: 2 additions & 0 deletions server/.gitconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[blame]
ignoreRevsFile = .git-blame-ignore-revs
46 changes: 46 additions & 0 deletions server/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
MANIFEST
build
dist
_build
docs/man/*.gz
docs/source/api/generated
docs/source/config.rst
docs/gh-pages
jupyter_server/i18n/*/LC_MESSAGES/*.mo
jupyter_server/i18n/*/LC_MESSAGES/nbjs.json
jupyter_server/static/style/*.min.css*
node_modules
*.py[co]
__pycache__
*.egg-info
*~
*.bak
.ipynb_checkpoints
.tox
.DS_Store
\#*#
.#*
.coverage*
.pytest_cache
src

*.swp
*.map
Read the Docs
config.rst

/.project
/.pydevproject

# copied changelog file
docs/source/other/changelog.md

# jetbrains ide stuff
*.iml
.idea/

# vscode ide stuff
*.code-workspace
.history
.vscode/*
!.vscode/*.template
Empty file added server/.gitmodules
Empty file.
Loading

0 comments on commit 6145c76

Please sign in to comment.