Skip to content

Commit dc024ed

Browse files
authored
Update deploying.md
Removed uv, directly call uvicorn.
1 parent bab18a0 commit dc024ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/concepts/deploying.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ app = create_app(None, "config.py")
112112
And then we invoke the wrapper:
113113
114114
```bash
115-
CMD uv run uvicorn app_wrapper:app --host 0.0.0.0 --port 8000
115+
CMD uvicorn app_wrapper:app --host 0.0.0.0 --port 8000
116116
```
117117
118118
This line starts the Guardrails API Flask application with a gunicorn WSGI server. It specifies what port to bind the server to, as well as the timeout for workers and the maximum number of worker threads for handling requests.

0 commit comments

Comments
 (0)