Echo-ai commited on
Commit
5778ff7
·
verified ·
1 Parent(s): 47e68dc

Update start.sh

Browse files
Files changed (1) hide show
  1. start.sh +3 -2
start.sh CHANGED
@@ -1,4 +1,5 @@
1
- #!/bin/bash
2
- ollama serve &
 
3
  ollama pull tinyllama
4
  uvicorn app:app --host 0.0.0.0 --port 7860
 
1
+ #!/bin/sh
2
+ ollama serve > /dev/null 2>&1 &
3
+ sleep 10
4
  ollama pull tinyllama
5
  uvicorn app:app --host 0.0.0.0 --port 7860