#!/bin/bash gunicorn --bind 0.0.0.0:5000 backend.app:app & cd frontend && ng serve --host 0.0.0.0 --port 4200 & wait