mirror of
https://github.com/saymrwulf/JupyterManager.git
synced 2026-05-14 20:38:00 +00:00
19 lines
869 B
Bash
19 lines
869 B
Bash
|
|
# ──────────────────────────────────────────────────────────────────────
|
||
|
|
# jupyter-hub default configuration
|
||
|
|
#
|
||
|
|
# Override these in ~/.config/jupyter-hub/config.sh
|
||
|
|
# ──────────────────────────────────────────────────────────────────────
|
||
|
|
|
||
|
|
# Port range to scan for Jupyter instances
|
||
|
|
PORT_RANGE_START=8888
|
||
|
|
PORT_RANGE_END=8899
|
||
|
|
|
||
|
|
# Directories to scan for projects with scripts/app.sh
|
||
|
|
# A project is recognized if it has:
|
||
|
|
# 1. scripts/app.sh AND
|
||
|
|
# 2. a notebooks/ directory OR jupyter in pyproject.toml
|
||
|
|
SCAN_DIRS=(
|
||
|
|
"$HOME/GitClone/ClaudeCodeProjects"
|
||
|
|
"$HOME/GitClone/CodexProjects"
|
||
|
|
)
|