We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccaaa17 commit 570d2baCopy full SHA for 570d2ba
scripts/entrypoint.sh
@@ -29,8 +29,8 @@ else
29
echo "Starting FastAPI app..."
30
31
if [ "$APP_ENV" = "production" ]; then
32
- exec uvicorn text_extract_api.main:app --host 0.0.0.0 --port 8000 &
+ exec uvicorn text_extract_api.main:app --host 0.0.0.0 --port 8000
33
else
34
- exec uvicorn text_extract_api.main:app --host 0.0.0.0 --port 8000 --reload &
+ exec uvicorn text_extract_api.main:app --host 0.0.0.0 --port 8000 --reload
35
fi
36
0 commit comments