mirror of
https://github.com/jupyterhub/the-littlest-jupyterhub.git
synced 2025-12-18 21:54:05 +08:00
Compare commits
7 Commits
8b55d5f5bc
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8963e62044 | ||
|
|
daec71b149 | ||
|
|
e17af65b38 | ||
|
|
5c2d688937 | ||
|
|
1df02de795 | ||
|
|
181aa975f5 | ||
|
|
243fcf7be0 |
4
.github/workflows/integration-test.yaml
vendored
4
.github/workflows/integration-test.yaml
vendored
@@ -56,7 +56,7 @@ jobs:
|
|||||||
extra_flags: --upgrade-from=1
|
extra_flags: --upgrade-from=1
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v6
|
||||||
- uses: actions/setup-python@v6
|
- uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: "3.10"
|
python-version: "3.10"
|
||||||
@@ -119,7 +119,7 @@ jobs:
|
|||||||
distro_image: "ubuntu:22.04"
|
distro_image: "ubuntu:22.04"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v6
|
||||||
- uses: actions/setup-python@v6
|
- uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: "3.10"
|
python-version: "3.10"
|
||||||
|
|||||||
2
.github/workflows/unit-test.yaml
vendored
2
.github/workflows/unit-test.yaml
vendored
@@ -48,7 +48,7 @@ jobs:
|
|||||||
python_version: "3.12"
|
python_version: "3.12"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v6
|
||||||
- uses: actions/setup-python@v6
|
- uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: "${{ matrix.python_version }}"
|
python-version: "${{ matrix.python_version }}"
|
||||||
|
|||||||
11
docs/conf.py
11
docs/conf.py
@@ -138,3 +138,14 @@ rediraffe_redirects = {
|
|||||||
"howto/env/notebook-interfaces": "howto/user-env/notebook-interfaces",
|
"howto/env/notebook-interfaces": "howto/user-env/notebook-interfaces",
|
||||||
"howto/env/server-resources": "howto/user-env/server-resources",
|
"howto/env/server-resources": "howto/user-env/server-resources",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def setup(app):
|
||||||
|
# Enable Plausible.io stats
|
||||||
|
app.add_js_file(
|
||||||
|
"https://plausible.io/js/pa-B75UO5--FNXYQSG7GBWkf.js", loading_method="async"
|
||||||
|
)
|
||||||
|
app.add_js_file(
|
||||||
|
filename=None,
|
||||||
|
body="window.plausible=window.plausible||function(){(plausible.q=plausible.q||[]).push(arguments)},plausible.init=plausible.init||function(i){plausible.o=i||{}};plausible.init({hashBasedRouting:true})",
|
||||||
|
)
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ The easiest & safest way to develop & test TLJH is with [Docker](https://www.doc
|
|||||||
--publish 12000:80 \
|
--publish 12000:80 \
|
||||||
--env TLJH_BOOTSTRAP_DEV=yes \
|
--env TLJH_BOOTSTRAP_DEV=yes \
|
||||||
--env TLJH_BOOTSTRAP_PIP_SPEC=/srv/src \
|
--env TLJH_BOOTSTRAP_PIP_SPEC=/srv/src \
|
||||||
--env PATH=/opt/tljh/hub/bin:${PATH} \
|
--env "PATH=/opt/tljh/hub/bin:${PATH}" \
|
||||||
--mount type=bind,source="$(pwd)",target=/srv/src \
|
--mount type=bind,source="$(pwd)",target=/srv/src \
|
||||||
tljh-systemd
|
tljh-systemd
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user