Skip to content

Commit 0099ec8

Browse files
committed
fix: Add initialisation timeout param to documentation
1 parent f3bc875 commit 0099ec8

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

toml-reference/toml-reference.mdx

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,18 @@ The configuration is organized into the following main sections:
1515

1616
The `[cerebrium.deployment]` section defines core deployment settings.
1717

18-
| Option | Type | Default | Description |
19-
| --------------------- | -------- | ---------------------- | ----------------------------------------------------------- |
20-
| name | string | required | Desired app name |
21-
| python_version | string | "3.12" | Python version to use (3.10, 3.11, 3.12) |
22-
| disable_auth | boolean | false | Disable default token-based authentication on app endpoints |
23-
| include | string[] | ["*"] | Files/patterns to include in deployment |
24-
| exclude | string[] | [".*"] | Files/patterns to exclude from deployment |
25-
| shell_commands | string[] | [] | Commands to run at the end of the build |
26-
| pre_build_commands | string[] | [] | Commands to run before dependencies install |
27-
| docker_base_image_url | string | "debian:bookworm-slim" | Base Docker image |
28-
| use_uv | boolean | false | Use UV for faster Python package installation |
18+
| Option | Type | Default | Description |
19+
| --------------------------------- | -------- | ---------------------- |-----------------------------------------------------------------------------------------------|
20+
| name | string | required | Desired app name |
21+
| python_version | string | "3.12" | Python version to use (3.10, 3.11, 3.12) |
22+
| disable_auth | boolean | false | Disable default token-based authentication on app endpoints |
23+
| include | string[] | ["*"] | Files/patterns to include in deployment |
24+
| exclude | string[] | [".*"] | Files/patterns to exclude from deployment |
25+
| shell_commands | string[] | [] | Commands to run at the end of the build |
26+
| pre_build_commands | string[] | [] | Commands to run before dependencies install |
27+
| docker_base_image_url | string | "debian:bookworm-slim" | Base Docker image |
28+
| use_uv | boolean | false | Use UV for faster Python package installation |
29+
| deployment_initialization_timeout | integer | 600 (10 minutes) | The max time to wait for app initialisation during build, before timing out. Max 900 (15 min) |
2930

3031
<Info>
3132
Changes to python_version or docker_base_image_url trigger full rebuilds since

0 commit comments

Comments
 (0)