-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add binder link in README and on PR (#41)
* Add binder directory, binder badge on readme and binder action on PR * Fix postBuild script
- Loading branch information
Showing
4 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Binder Badge | ||
on: | ||
pull_request_target: | ||
types: [opened] | ||
|
||
jobs: | ||
binder: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- uses: jupyterlab/maintainer-tools/.github/actions/binder-link@v1 | ||
with: | ||
github_token: ${{ secrets.github_token }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: jupyterlab-collaborative-chat | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- jupyterlab >=4.0.0 | ||
- nodejs >=18,<19 | ||
- python >=3.11,<3.12 | ||
- yarn >=3,<4 | ||
# build | ||
- hatchling >=1.5.0 | ||
- hatch-jupyter-builder >=0.3.2 | ||
- hatch-nodejs-version | ||
# Use pip to get the the latest version | ||
- pip: | ||
- jupyter_server >=2.0.0 | ||
- jupyter_collaboration | ||
- jupyter_ydoc >=2.0.0,<3.0.0 | ||
- pycrdt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Copyright (c) Jupyter Development Team. | ||
# Distributed under the terms of the Modified BSD License. | ||
|
||
# Install collaborative chat | ||
./scripts/install.sh collaborative | ||
|
||
jupyter troubleshoot | ||
jupyter notebook --show-config | ||
jupyter lab --show-config | ||
jupyter labextension list | ||
jupyter server extension list |