#!/bin/bash if [ "$FLASK_ENV" = "production" ]; then gunicorn --bind 0.0.0.0:3001 "ktvmanager.main:create_app()" else flask run --host=0.0.0.0 --port=3001 fi