2025-06-17 13:06:48 +02:00
|
|
|
# JupyterHub Notebook Viewer Configuration
|
|
|
|
|
|
|
|
# Core Settings
|
2025-06-23 16:52:42 +02:00
|
|
|
JUPYTERHUB_SHARED_DIR=./shared
|
|
|
|
APP_TITLE="IFN Shared HUB"
|
2025-06-17 13:06:48 +02:00
|
|
|
|
|
|
|
# Flask Settings
|
|
|
|
FLASK_HOST=0.0.0.0
|
2025-06-23 16:52:42 +02:00
|
|
|
FLASK_PORT=5001
|
2025-06-17 13:06:48 +02:00
|
|
|
FLASK_DEBUG=True
|
2025-06-23 16:52:42 +02:00
|
|
|
FLASK_SECRET_KEY="hoeuhfou0a9ufm08fwncznf0aauuf"
|
2025-06-17 13:06:48 +02:00
|
|
|
|
|
|
|
# File Handling
|
|
|
|
MAX_FILE_SIZE=16777216
|
|
|
|
NOTEBOOKS_PER_PAGE=50
|
|
|
|
ALLOWED_EXTENSIONS=.ipynb,.py,.md
|
|
|
|
|
|
|
|
# Feature Toggles
|
|
|
|
ENABLE_DOWNLOAD=True
|
|
|
|
ENABLE_API=True
|
|
|
|
|