run-web.sh 189 B

12345678
  1. #!/usr/bin/env sh
  2. if [ "$USE_ASYNC_SERVER" = "true" ]; then
  3. # Run the command for asynchronous server
  4. bin/run-uvicorn.sh
  5. else
  6. # Run the original command
  7. bin/run-uwsgi.sh
  8. fi