Files
whisperbox-transcribe/app/web/start.sh
2023-01-07 11:35:31 +01:00

10 lines
158 B
Bash
Executable File

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