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
|
@ -1,11 +0,0 @@
|
|||
[general]
|
||||
dev_env = testing
|
||||
public_url = http://localhost
|
||||
api_key = H2NRICX6CM8F50CU123C
|
||||
|
||||
[database]
|
||||
host = localhost
|
||||
port = 5432
|
||||
name = libretime_test
|
||||
user = libretime
|
||||
password = libretime
|
11
legacy/tests/config/config.yml
Normal file
11
legacy/tests/config/config.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
general:
|
||||
dev_env: testing
|
||||
public_url: http://localhost
|
||||
api_key: H2NRICX6CM8F50CU123C
|
||||
|
||||
database:
|
||||
host: localhost
|
||||
port: 5432
|
||||
name: libretime_test
|
||||
user: libretime
|
||||
password: libretime
|
Loading…
Add table
Add a link
Reference in a new issue