interstellar_ai/deployment_scripts/linux/run.sh

13 lines
114 B
Bash
Raw Normal View History

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