Skip to content

Commit e61f2cd

Browse files
committed
docs: fixes
1 parent 22d6e3d commit e61f2cd

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

docs/authentication/basic.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@ TRACECAT__AUTH_TYPES=basic,oidc
2929

3030
## Minimum password length
3131

32-
When you use basic auth, your password must be at least 12 characters long.
32+
When you use basic auth, your password must be at least
33+
`TRACECAT__AUTH_MIN_PASSWORD_LENGTH` characters long. The default minimum is `12`.

docs/custom-actions/custom-registry.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ You can build your own actions and use them in agents and workflows through Trac
1313

1414
## Permissions
1515

16-
Custom registry is a organization-level feature and syncs across all workspaces.
16+
Custom registry is an organization-level feature and syncs across all workspaces.
1717
You must have the "Organization Admin" role to add and manage the custom registry.
1818

1919
## Installation
@@ -77,8 +77,8 @@ Yes. Tracecat works with Gitlab and GitHub Enterprise.
7777

7878
### Can I rename my custom Python package name?
7979

80-
Yes. The package name from the start kit is `custom_actions`.
81-
To rename it, you'll need to need rename the:
80+
Yes. The package name from the starter kit is `custom_actions`.
81+
To rename it, you'll need to rename the:
8282

8383
- `custom_actions` folder to `my_new_package_name`
8484
- Project name in `pyproject.toml` to `my_new_package_name`

docs/custom-actions/local-development.mdx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ In your `.env` file, set the following environment variables:
2424
2. `TRACECAT__LOCAL_REPOSITORY_PATH` to the path of your local repository e.g. `~/repos/my-local-registry`
2525
3. `PYTHONPATH` to `/app/local_registry:`
2626

27-
```yaml
28-
environment:
29-
TRACECAT__LOCAL_REPOSITORY_ENABLED: true
30-
TRACECAT__LOCAL_REPOSITORY_PATH: ~/dev/org/internal-registry
31-
PYTHONPATH: /app/local_registry:
27+
```bash
28+
TRACECAT__LOCAL_REPOSITORY_ENABLED=true
29+
TRACECAT__LOCAL_REPOSITORY_PATH=~/dev/org/internal-registry
30+
PYTHONPATH=/app/local_registry:
3231
```

docs/custom-actions/python-udf.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ secret_name = RegistrySecret(
3939
# (Optional) Define secrets used in the function
4040
secrets=[secret_name],
4141
)
42-
def say_goodbye_secretly(
42+
async def say_goodbye_secretly(
4343
name: Annotated[str, Doc("The name to say goodbye to")],
4444
):
4545
secret = secrets.get("SECRET_NAME")

docs/docs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@
385385
"links": [
386386
{
387387
"label": "Support",
388-
"href": "mailto:founders@tracecat.com"
388+
"href": "https://discord.gg/H4XZwsYzY4"
389389
}
390390
],
391391
"primary": {

docs/self-hosting/docker-compose.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ After the stack starts, verify that your containers are healthy and that you can
9595

9696
## FAQ
9797

98-
### Does Docker Compose support Traceact MCP?
98+
### Does Docker Compose support Tracecat MCP?
9999

100100
Yes. Tracecat uses [Dex](https://github.com/dexidp/dex) as a built-in OIDC provider for MCP.
101101
Dex is shipped with the Tracecat Docker Compose stack.

0 commit comments

Comments
 (0)