Spaces:
Runtime error
Runtime error
File size: 319 Bytes
b46696a |
1 2 3 4 5 6 7 8 9 10 11 12 |
#!/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 |