dear god, untested linux scripts

This commit is contained in:
Patrick_Pluto 2024-10-09 11:03:43 +02:00
parent 6435bfad8d
commit a592cf0e18
4 changed files with 60 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#!/bin/bash
cd py
python api.py &
pid_py=$!
npm start &
pid_node=$!
npx electron .
kill $pid_py
kill $pid_node