Compare commits

..

No commits in common. "6eb1cba0aa952acbfec9a38ac365646ef91a54c9" and "bee54bbd296a7213e19a22651e534e654259e193" have entirely different histories.

2 changed files with 2 additions and 4 deletions

View file

@ -1,6 +1,6 @@
#!/bin/bash
apt install npm nodejs python3-full ffmpeg libgtk-3-0 libnotify4 libgconf-2-4 libnss3 libxss1 libasound2 build-essential cmake -y
apt install npm nodejs python3-full -y
if ! ollama; then
curl -fsSL https://ollama.com/install.sh | sh
fi

View file

@ -1,10 +1,8 @@
#!/bin/bash
cd py
source venv/bin/activate
python3 api.py &
python api.py &
pid_py=$!
cd ..
npm start &
pid_node=$!