#!/bin/bash
cd /home/$(whoami)/public_html/dhru-bridge
nohup gunicorn -w 4 -b 0.0.0.0:5000 app:app > logs/app.log 2>&1 &
echo "API started on port 5000"