nakas commited on
Commit
b46696a
·
verified ·
1 Parent(s): 2694859

Create run.sh

Browse files
Files changed (1) hide show
  1. run.sh +12 -0
run.sh ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ # Start Jupyter notebook in the background
4
+ jupyter notebook --ip=0.0.0.0 --port=8888 --no-browser \
5
+ --NotebookApp.token="" \
6
+ --NotebookApp.password="" \
7
+ --NotebookApp.allow_origin="*" \
8
+ --NotebookApp.disable_check_xsrf=True \
9
+ --notebook-dir=/app/notebooks &
10
+
11
+ # Start Gradio app
12
+ python /app/app.py