#!/bin/bash

# Start Nginx
service nginx start

# Start Jupyter Notebook
jupyter notebook --ip=0.0.0.0 --port=8888 --no-browser --allow-root &

# Start Open-WebUI
open-webui serve
