mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-12 20:43:02 +00:00
13 lines
287 B
Bash
Executable File
13 lines
287 B
Bash
Executable File
#!/bin/bash -l
|
|
set -e
|
|
|
|
export JUPYTERHUB_API_TOKEN=super-secret
|
|
|
|
jupyterhub-singleuser \
|
|
--cookie-name=jupyterhub-services \
|
|
--port=9999 \
|
|
--group='shared' \
|
|
--base-url=/services/shared-notebook \
|
|
--hub-prefix=/hub/ \
|
|
--hub-api-url=http://127.0.0.1:8081/hub/api/
|