Code-agent-v1 / run.sh
nakas's picture
Create run.sh
b46696a verified
raw
history blame
319 Bytes
#!/bin/bash
# Start Jupyter notebook in the background
jupyter notebook --ip=0.0.0.0 --port=8888 --no-browser \
--NotebookApp.token="" \
--NotebookApp.password="" \
--NotebookApp.allow_origin="*" \
--NotebookApp.disable_check_xsrf=True \
--notebook-dir=/app/notebooks &
# Start Gradio app
python /app/app.py