#! /usr/bin/env bash alembic upgrade head if [ "$PYTHON_ENV" == "development" ]; then uvicorn app.main:app --host 0.0.0.0 --port 8080 --workers 4 --reload else uvicorn app.main:app --host 0.0.0.0 --workers 4 --port 8080 fi