Extra configuration files¶
age supports other files excepted for .age.toml to manage configuration.
Order of finding¶
age check “these are exiets” and “this includes configuration of age”. It use first valid file for configuration .
.age.toml
Cargo.toml
pyproject.toml
File and section¶
.age.toml
¶
Standard configuration file of age
.
Configuration values are managed on top-level sesciont.
Cargo.toml
¶
Manifest file of Rust project.
age
refers package.metadata.age
of file.
Note
See spec of file on “The Cargo Book”.
pyproject.toml
¶
Metadata management file of Python project.
age
refers tool.age
of file.
Note
See spec of file.