newturok commited on
Commit
49f972e
·
verified ·
1 Parent(s): c588f68

Create start.sh

Browse files
Files changed (1) hide show
  1. start.sh +42 -0
start.sh ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ echo "pod started"
4
+
5
+ if [[ $PUBLIC_KEY ]]
6
+ then
7
+ mkdir -p ~/.ssh
8
+ chmod 700 ~/.ssh
9
+ cd ~/.ssh
10
+ echo $PUBLIC_KEY >> authorized_keys
11
+ chmod 700 -R ~/.ssh
12
+ cd /
13
+ service ssh start
14
+ fi
15
+
16
+ #!/bin/bash
17
+ if [[ -z "${HF_TOKEN}" ]] || [[ "${HF_TOKEN}" == "enter_your_huggingface_token_here" ]]
18
+ then
19
+ echo "HF_TOKEN is not set"
20
+ else
21
+ echo "HF_TOKEN is set, logging in..."
22
+ huggingface-cli login --token ${HF_TOKEN}
23
+ fi
24
+
25
+
26
+ # Start nginx as reverse proxy to enable api access
27
+ service nginx start
28
+
29
+ # Start JupyterLab
30
+ jupyter lab --ip=0.0.0.0 --port=8888 --no-browser --allow-root --NotebookApp.allow_origin='*' &
31
+ echo "JupyterLab started"
32
+
33
+ # Check if there is a venv directory, if so, activate it
34
+ if [ -d "/workspace/venv" ]; then
35
+ echo "venv directory found, activating it"
36
+ source /workspace/venv/bin/activate
37
+ fi
38
+
39
+ # Execute the user's script
40
+ python3 /workspace/ComfyUI/main.py --listen
41
+
42
+ sleep infinity