CCL FAQ
Are there types?
Section titled “Are there types?”No. Keys and values are strings. Your application converts them:
port = 5432enabled = trueThe values in this case are "5432" and "true".
Can I use dots in keys?
Section titled “Can I use dots in keys?”Yes. database.host is a literal string key with dots:
database.host = localhost # Key: "database.host"For nested structure, use indentation instead.
How do I nest?
Section titled “How do I nest?”Use indentation:
database = host = localhost port = 5432How do lists work?
Section titled “How do lists work?”Empty keys create list items:
servers = = web1.example.com = web2.example.comAre comments part of the data?
Section titled “Are comments part of the data?”Yes. Comments are entries with / as the key:
/= This is a commentkey = valueFilter them in your application.