Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion source/settings.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The following table lists the available settings for
|vsce|:

.. list-table::
:widths: 25 50 25
:widths: 25 45 30
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

adjusted the widths of these table columns for better visibility of the 2 code block default examples

:header-rows: 1

* - Setting
Expand Down Expand Up @@ -109,6 +109,32 @@ The following table lists the available settings for
collection. Does not affect playground operations.
- ``10``

* - :guilabel:`Preset Connections`
- Specifies a preset list of connections. Use this setting to share
connection configurations in a workspace or global scope.

Edit the ``mdb.presetConnection`` property in your project's
``settings.json`` file.

Within the ``mdb.presetConnections`` object, you
can specify:

- A ``name`` for the connection.
- A ``connectionString`` for your deployment.

:red:`WARNING:` Do not store sensitive credentials in this setting.
Connection strings are stored in plain text, so they can be easily
accessed.

- .. code-block:: json

[
{
"name": "Preset Connection",
"connectionString": "mongodb://localhost:27017"
}
]

* - :guilabel:`Send Telemetry`
- If enabled, allows the collection of anonymous diagnostic and
usage telemetry data to help improve |vsce|.
Expand Down