add forgejo, add jupyter

This commit is contained in:
Aron Petau 2025-11-05 14:32:21 +01:00
parent a6d498bda0
commit 98417edd8b
23 changed files with 562 additions and 261 deletions

View file

@ -18,6 +18,7 @@ SERVER_HOSTNAME = os.environ.get("SERVER_HOSTNAME", "einszwovier.local")
BOOKSTACK_PORT = os.environ.get("BOOKSTACK_PORT", "6875")
OPENWEBUI_PORT = os.environ.get("OPENWEBUI_PORT", "8080")
PORTAINER_PORT = os.environ.get("PORTAINER_PORT", "9000")
FORGEJO_PORT = os.environ.get("FORGEJO_PORT", "3003")
# Courses CSV path
COURSES_CSV = Path("data/courses.csv")
@ -84,6 +85,7 @@ async def welcome(request: Request):
"bookstack_port": BOOKSTACK_PORT,
"openwebui_port": OPENWEBUI_PORT,
"portainer_port": PORTAINER_PORT,
"forgejo_port": FORGEJO_PORT,
},
)