#!/bin/bash

cd py
python api.py &
pid_py=$!

npm start &
pid_node=$!

npx electron .

kill $pid_py
kill $pid_node