-
Notifications
You must be signed in to change notification settings - Fork 329
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -787,7 +787,6 @@ disable_default_shorthands = false # disable the default shorthands, see `RTX_DI | |
disable_tools = ['node'] # disable specific tools, generally used to turn off core tools | ||
|
||
experimental = false # enable experimental features | ||
log_level = 'debug' # log verbosity, see `RTX_LOG_LEVEL` | ||
|
||
[alias.node] | ||
my_custom_node = '20' # makes `rtx install node@my_custom_node` install node-20.x | ||
|
@@ -844,6 +843,15 @@ development/staging/production environments. See | |
[Config Environments](#experimental-config-environments) for more on how | ||
to use this feature. | ||
|
||
#### `RTX_USE_VERSIONS_HOST` | ||
|
||
Default: `true` | ||
|
||
Set to "false" to disable using [rtx-versions](https://rtx-versions.jdx.dev) as | ||
a quick way for rtx to query for new versions. This host regularly grabs all the | ||
latest versions of core and community plugins. It's faster than running a plugin's | ||
`list-all` command and gets around GitHub rate limiting problems when using it. | ||
|
||
#### `RTX_${PLUGIN}_VERSION` | ||
|
||
Set the version for a runtime. For example, `RTX_NODE_VERSION=20` will use <[email protected]> regardless | ||
|
@@ -903,6 +911,12 @@ This shows the installation output during `rtx install` and `rtx plugin install` | |
This should likely be merged so it behaves the same as `RTX_DEBUG=1` and we don't have | ||
2 configuration for the same thing, but for now it is its own config. | ||
|
||
Equivalent to `RTX_LOG_LEVEL=debug`. | ||
|
||
#### `RTX_QUIET=1` | ||
|
||
Equivalent to `RTX_LOG_LEVEL=warn`. | ||
|
||
#### `RTX_ASDF_COMPAT=1` | ||
|
||
Only output `.tool-versions` files in `rtx local|global` which will be usable by asdf. | ||
|