LangChain / start
dcd018's picture
Inference.
3f880e7
Raw
History Blame Contribute Delete
232 Bytes
#! /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