Files
whisperbox-transcribe/app/start.sh
2023-01-06 16:08:31 +01:00

10 lines
154 B
Bash
Executable File

#! /usr/bin/env bash
set -e
# run migrations
alembic upgrade head
# start app
uvicorn app.main:app --reload --host ${HOST:-0.0.0.0} --port ${PORT:-80}