You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
334 B
31 lines
334 B
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
echo "Starting the python server..."
|
|
|
|
pushd backend
|
|
source venv/bin/activate
|
|
|
|
FRONTEND_PATH=$(realpath ../frontend) python main.py &
|
|
pid_backend=$!
|
|
|
|
trap_ctrlc() {
|
|
kill $pid_backend
|
|
}
|
|
|
|
trap trap_ctrlc INT
|
|
|
|
popd
|
|
|
|
sleep 3
|
|
|
|
echo "Building frontend..."
|
|
|
|
pushd frontend
|
|
npm run build
|
|
popd
|
|
|
|
echo "Done!"
|
|
|
|
wait |