update config files

This commit is contained in:
miloschwartz
2025-12-09 16:14:40 -05:00
parent d413266637
commit 5c2de2a7ab
2 changed files with 10 additions and 36 deletions

View File

@@ -25,8 +25,6 @@ branding:
light_path: "/branding/logo-light.svg" light_path: "/branding/logo-light.svg"
dark_path: "/branding/logo-dark.svg" dark_path: "/branding/logo-dark.svg"
favicon_path: "/branding/favicon.ico"
colors: colors:
light: light:
primary: "hsl(212, 65%, 35%)" primary: "hsl(212, 65%, 35%)"
@@ -73,6 +71,16 @@ All branding configuration options are optional. Only specify the sections you w
**Example**: `"MyApp"` **Example**: `"MyApp"`
</ResponseField> </ResponseField>
### Favicon
To customize the favicon, mount your favicon to `/app/public/favicon.ico` in the container.
```yaml title="docker-compose.yml"
volumes:
- ./config:/app/config
- ./branding/favicon.ico:/app/public/favicon.ico
```
### Background Image ### Background Image
<ResponseField name="background_image_path" type="string"> <ResponseField name="background_image_path" type="string">
@@ -168,18 +176,6 @@ All branding configuration options are optional. Only specify the sections you w
</Expandable> </Expandable>
</ResponseField> </ResponseField>
### Favicon
<ResponseField name="favicon_path" type="string">
Path to a custom favicon.
**Example**: `"/branding/favicon.ico"`
<Note>
Requires mounting a volume to `/app/public`.
</Note>
</ResponseField>
### Footer ### Footer
<ResponseField name="footer" type="array of objects"> <ResponseField name="footer" type="array of objects">
@@ -209,12 +205,6 @@ All branding configuration options are optional. Only specify the sections you w
Custom text for the login page. Custom text for the login page.
<Expandable title="Login Page"> <Expandable title="Login Page">
<ResponseField name="title_text" type="string">
The main title text displayed on the login page.
**Example**: `"Welcome Back!"`
</ResponseField>
<ResponseField name="subtitle_text" type="string"> <ResponseField name="subtitle_text" type="string">
The subtitle text displayed below the title. The subtitle text displayed below the title.
@@ -229,12 +219,6 @@ All branding configuration options are optional. Only specify the sections you w
Custom text for the signup page. Custom text for the signup page.
<Expandable title="Signup Page"> <Expandable title="Signup Page">
<ResponseField name="title_text" type="string">
The main title text displayed on the signup page.
**Example**: `"Create Your Account"`
</ResponseField>
<ResponseField name="subtitle_text" type="string"> <ResponseField name="subtitle_text" type="string">
The subtitle text displayed below the title. The subtitle text displayed below the title.

View File

@@ -714,16 +714,6 @@ This section contains the complete reference for all configuration options in `c
When enabled, only domains created through the UI are allowed. When enabled, only domains created through the UI are allowed.
</Note> </Note>
</ResponseField> </ResponseField>
<ResponseField name="enable_clients" type="boolean">
Whether to enable client functionality.
**Default**: `true`
<Note>
Controls access to client-related features and endpoints.
</Note>
</ResponseField>
</Expandable> </Expandable>
</ResponseField> </ResponseField>