Spaces:
Running
Running
Update startup.sh
Browse files- startup.sh +6 -8
startup.sh
CHANGED
@@ -1,14 +1,12 @@
|
|
1 |
#! /bin/bash
|
2 |
|
3 |
-
|
4 |
-
ls -al
|
5 |
-
|
6 |
-
ls -l /
|
7 |
-
cd /bin
|
8 |
-
ls -l
|
9 |
-
|
10 |
/app/weaviate --host 127.0.0.1 --port 8080 --scheme http &
|
11 |
|
|
|
12 |
sleep 10
|
13 |
|
14 |
-
|
|
|
|
|
|
|
|
1 |
#! /bin/bash
|
2 |
|
3 |
+
echo "#### Before /app/weaviate"
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
/app/weaviate --host 127.0.0.1 --port 8080 --scheme http &
|
5 |
|
6 |
+
echo "#### Before sleep."
|
7 |
sleep 10
|
8 |
|
9 |
+
echo "#### Before /app/semsearch.py"
|
10 |
+
python /app/semsearch.py &
|
11 |
+
|
12 |
+
wait
|