Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
antonymilne committed Nov 6, 2023
1 parent 4ae5dbc commit 392065e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions vizro-core/docs/pages/user_guides/run.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ A Vizro app wraps a Dash app, which itself wraps a Flask app. Hence to deploy a
- [Flask deployment documentation](https://flask.palletsprojects.com/en/2.0.x/deploying/)
- [Dash deployment documentation](https://dash.plotly.com/deployment)

In particular, `app = Vizro()` exposes the underyling Flask app through `app.dash.server`. This provides the application instance to a WSGI server such as [Gunicorn](https://gunicorn.org/).
In particular, `app = Vizro()` exposes the underlying Flask app through `app.dash.server`. This provides the application instance to a WSGI server such as [Gunicorn](https://gunicorn.org/).

!!! example "Use gunicorn"
=== "app.py"
Expand All @@ -95,4 +95,3 @@ To run using Gunicorn with four worker processes, execute
gunicorn app:server --workers 4
```
in the command line. For more Gunicorn configuration options, please refer to [Gunicorn documentation](https://docs.gunicorn.org/).

0 comments on commit 392065e

Please sign in to comment.