24 lines
429 B
Bash
24 lines
429 B
Bash
# JupyterHub Notebook Viewer Configuration
|
|
|
|
# Core Settings
|
|
JUPYTERHUB_SHARED_DIR=/shared
|
|
APP_TITLE=JupyterHub Notebook Viewer
|
|
|
|
# Flask Settings
|
|
FLASK_HOST=0.0.0.0
|
|
FLASK_PORT=5000
|
|
FLASK_DEBUG=True
|
|
FLASK_SECRET_KEY=your-secret-key-change-in-production
|
|
|
|
# File Handling
|
|
MAX_FILE_SIZE=16777216
|
|
NOTEBOOKS_PER_PAGE=50
|
|
ALLOWED_EXTENSIONS=.ipynb,.py,.md
|
|
|
|
# Feature Toggles
|
|
ENABLE_DOWNLOAD=True
|
|
ENABLE_API=True
|
|
|
|
# UI Settings
|
|
THEME=dark
|