diff --git a/posts/config/json_yaml/index.html b/posts/config/json_yaml/index.html index ef5bae96..7b01165e 100644 --- a/posts/config/json_yaml/index.html +++ b/posts/config/json_yaml/index.html @@ -289,12 +289,12 @@ a {

Default Configuration Mode (using JSON/YAML)

-

The default configuration mode may be configured by using a config.json or config.yml file in the data project root. If a .env file is present along with this config file, then it will be loaded, and the environment variables defined therein will be available for token replacements in your configuration document using ${ENV_VAR} syntax.

+

The default configuration mode may be configured by using a settings.json or settings.yml file in the data project root. If a .env file is present along with this config file, then it will be loaded, and the environment variables defined therein will be available for token replacements in your configuration document using ${ENV_VAR} syntax.

For example:

# .env
 API_KEY=some_api_key
 
-# config.json
+# settings.json
 {
     "llm": {
         "api_key": "${API_KEY}"