tuist.toml
tuist.toml is a build-system agnostic configuration file and an evolution of Tuist.swift. Unlike Tuist.swift, it does not require Swift, making it usable across any platform and build system. It is ideal for environments where Swift is not available, such as Linux-based CI runners, or when you only need to configure server-related settings without a full Tuist.swift manifest.
Tuist looks for tuist.toml by traversing the directory hierarchy upward from the current working directory, stopping at the first match. This means you can place it at the root of your project and run Tuist commands from any subdirectory.
Supported keys
| Key | Type | Required | Default | Description |
|---|---|---|---|---|
project | String | Yes | — | The full handle of your project (e.g. "tuist/tuist"). |
url | String | No | https://tuist.dev | The URL of the Tuist server. |
Example
toml
project = "tuist/tuist"
url = "https://tuist.dev"Configuration precedence
When the same setting is defined in multiple places, Tuist resolves it using the following precedence order (highest to lowest):
- CLI flags
- Environment variables
- Tuist.swift
- tuist.toml
- Defaults
