We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for !include tags like in home assistant to allow the config file to be split into multiple files. This was originally suggested in #10 by @larizzo. Here are some simple options that allow this: https://davidchall.github.io/yaml-includes.html https://stackoverflow.com/questions/528281/how-can-i-include-an-yaml-file-inside-another
The text was updated successfully, but these errors were encountered:
Added include file support to the yaml reader to fix #11
3467a56
Fixed. You can now say: devices: !include devices.yaml or devices: !include [dev1.yaml, dev2.yaml]
devices: !include devices.yaml
devices: !include [dev1.yaml, dev2.yaml]
Sorry, something went wrong.
No branches or pull requests
Add support for !include tags like in home assistant to allow the config file to be split into multiple files. This was originally suggested in #10 by @larizzo. Here are some simple options that allow this:
https://davidchall.github.io/yaml-includes.html
https://stackoverflow.com/questions/528281/how-can-i-include-an-yaml-file-inside-another
The text was updated successfully, but these errors were encountered: