dear god, untested linux scripts
This commit is contained in:
parent
6435bfad8d
commit
a592cf0e18
4 changed files with 60 additions and 0 deletions
13
deployment_scripts/linux/run.sh
Normal file
13
deployment_scripts/linux/run.sh
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue