SemanticSearchPOC / startup.sh
MVPilgrim's picture
Update startup.sh
11cbcf2 verified
raw
history blame
256 Bytes
#! /bin/bash
echo "#### ldd weaviate"
ldd /app/weaviate
echo "#### Before /app/weaviate"
/app/weaviate --host 127.0.0.1 --port 8080 --scheme http &
echo "#### Before sleep."
sleep 10
echo "#### Before /app/semsearch.py"
python /app/semsearch.py &
wait