feat: change config file format to yaml
- docs: add link to yaml.org BREAKING: The `ini` configuration file format changed to `yml`. Please rewrite your configuration file using the yaml format.
This commit is contained in:
parent
5d902ef962
commit
e4439390fe
11 changed files with 121 additions and 139 deletions
|
@ -10,9 +10,9 @@ def config_filepath(tmp_path: Path):
|
|||
filepath = tmp_path / "airtime.conf"
|
||||
filepath.write_text(
|
||||
"""
|
||||
[general]
|
||||
public_url = http://localhost/test
|
||||
api_key = TEST_KEY
|
||||
general:
|
||||
public_url: http://localhost/test
|
||||
api_key: TEST_KEY
|
||||
"""
|
||||
)
|
||||
return filepath
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue