heroweb/start_authserver.sh

10 lines
202 B
Bash
Raw Permalink Normal View History

2024-09-05 04:56:55 +00:00
#!/bin/bash
set -ex
BASE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
source ${BASE_DIR}/myenv.sh
cd $BASE_DIR/authserver
uvicorn main:app --host 0.0.0.0 --port 8000 --reload