> ## Documentation Index
> Fetch the complete documentation index at: https://docs.silo-software.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Global Settings

> Configure your documentation site with docs.json

Every Mintlify site now uses a `docs.json` file for global configuration.

In this repo, that file lives at the root of the docs app and controls the site
name, theme, navigation, branding, navbar, footer, and SEO behavior.

## Minimal structure

```json theme={"system"}
{
  "$schema": "https://mintlify.com/docs.json",
  "theme": "mint",
  "name": "Silo Software Dokumentation",
  "colors": {
    "primary": "#ff3c00"
  },
  "navigation": [
    {
      "group": "Get Started",
      "pages": ["introduction", "quickstart", "development"]
    }
  ]
}
```

## What this repo configures

* `theme`, `name`, and `colors` define the global visual system.
* `logo`, `favicon`, `fonts`, and `appearance` control branding and light/dark
  behavior.
* `navigation` defines languages, tabs, groups, anchors, and page order.
* `navbar` configures the support link and the primary dashboard button.
* `footer` configures socials and the link columns.
* `seo` and `styling` control indexing and code block rendering behavior.

## Upgrading from mint.json

If you still have an old `mint.json` file, use the current Mint CLI to migrate
it:

```bash theme={"system"}
mint upgrade
```

That command generates a `docs.json` file from the deprecated config. After you
verify the output, delete `mint.json`.

## Official references

* [Global settings](https://mintlify.com/docs/organize/settings)
* [Navigation](https://mintlify.com/docs/organize/navigation)
* [Refactoring mint.json into docs.json](https://mintlify.com/blog/refactoring-mint-json-into-docs-json)
