# INI vs JSON ## INI Format ```ini [database] host = localhost port = 5432 [logging] level = debug ``` ## JSON Format ```json { "database": { "host": "localhost", "port": 5432 }, "log