MVPilgrim commited on
Commit
3f0bf17
·
verified ·
1 Parent(s): 41cf3a2

Update startup.sh

Browse files
Files changed (1) hide show
  1. startup.sh +6 -8
startup.sh CHANGED
@@ -1,14 +1,12 @@
1
  #! /bin/bash
2
 
3
- pwd
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
- python /app/semsearch.py &
 
 
 
 
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