Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some typos in environment.qmd #874

Merged
merged 1 commit into from
Oct 18, 2023
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
4 changes: 2 additions & 2 deletions docs/projects/environment.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: "Environment Variables"

## Overview

You may have one more more environment variables that you want to make sure are set whenever you render your project. For example, you might be using environment variables to:
You may have one more environment variables that you want to make sure are set whenever you render your project. For example, you might be using environment variables to:

1. Provide the URL of a server to download data from.
2. Set the address of a proxy server (e.g. `HTTP_PROXY`).
Expand Down Expand Up @@ -65,7 +65,7 @@ PYTHONINSPECT=1
PYTHONDEVMODE=1
```

Note that `_environment.local` is not intended to be checked in to version control. Rather, it's designed for values that you want active only on your system. To facilitate this, Quarto automatically adds the following to your project `.gitignore` file:
Note that `_environment.local` is not intended to be checked in to version control. Rather, it's designed for values that you want to activate only on your system. To facilitate this, Quarto automatically adds the following to your project `.gitignore` file:

``` {.ini filename=".gitignore"}
/_*.local
Expand Down
Loading