Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
3 changes: 2 additions & 1 deletion _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,8 @@ website:
- docs/projects/quarto-projects.qmd
- docs/projects/code-execution.qmd
- docs/projects/profiles.qmd
- docs/projects/environment.qmd
- text: "Environment Variables"
href: docs/projects/environment.qmd
- docs/projects/scripts.qmd
- docs/projects/virtual-environments.qmd
- docs/projects/binder.qmd
Expand Down
2 changes: 1 addition & 1 deletion docs/advanced/environment-vars.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Environment Variables"
title: "Quarto Environment Variables"
summary: Environment variables Quarto inspects and sets
format: html
---
Expand Down
8 changes: 7 additions & 1 deletion docs/projects/environment.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Environment Variables"
title: "Project Environment Variables"
---

## Overview
Expand All @@ -13,6 +13,12 @@ You may have one or more environment variables that you want to make sure are se
5. Provide options for language interpreters (e.g. `PYTHONINSPECT` or `TZDIR`).
6. Determine which versions of Python and R are used (e.g. `QUARTO_PYTHON`, `QUARTO_R`, `PY_PYTHON`, or `RETICULATE_PYTHON`).

::: callout-tip
## Looking for a specific Quarto environment variable?

See [Quarto Environment Variables](/docs/advanced/environment-vars.qmd) for a list of environment variables that Quarto reads and sets.
:::

Quarto projects can define a set of standard environment variables as well as vary which environment variables are defined based on the [active project profile](profiles.qmd). It's also possible to use environment variables that are defined only on the local system and not checked in to version control.

## Environment File
Expand Down