interstellar_ai/deployment_scripts/linux/run.sh

15 lines
146 B
Bash
Raw Normal View History

2024-10-09 11:03:43 +02:00
#!/bin/bash
cd py
source venv/bin/activate
python3 api.py &
2024-10-09 11:03:43 +02:00
pid_py=$!
cd ..
2024-10-09 11:03:43 +02:00
npm start &
pid_node=$!
npx electron .
kill $pid_py
kill $pid_node