You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: doc/apps/dash.md
+13-1
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,18 @@ app = Dash(__name__)
30
30
server = app.server
31
31
```
32
32
33
+
```{note}
34
+
- `server = app.server` - Required to start a production grade server. Without it, deployment will fail as the infrastructure cannot find the server to start.
35
+
- `app = Dash(__name__)` - The deployment may require modification of the application's basic routing. If deployment fails, check the following log:
36
+
37
+
_ERROR: We were not able to modify your Routing automatically_
38
+
39
+
_INSTRUCTION: Please add `url_base_pathname="/application/"` to `app = Dash(__name__, ...)`_
40
+
41
+
This modification is automated, but you may see the notice above if it fails.
42
+
```
43
+
44
+
33
45
## Testing locally
34
46
35
47
To test the Dash application, you can run the following commands locally:
@@ -150,4 +162,4 @@ By default applications run with Python 3.11. Refer to this [section](../faq/faq
0 commit comments