feat(docs): Fix setup docu (#1926)

* Update settings.mdx

* docs: add cmd

---------

Co-authored-by: Javier Martinez <javiermartinezalvarez98@gmail.com>
This commit is contained in:
Mart 2024-07-08 16:19:16 +02:00 committed by GitHub
parent 2612928839
commit 067a5f144c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,10 +30,15 @@ For example, on **linux and macOS**, this gives:
export PGPT_PROFILES=my_profile_name_here export PGPT_PROFILES=my_profile_name_here
``` ```
Windows Powershell(s) have a different syntax, one of them being: Windows Command Prompt (cmd) has a different syntax:
```shell ```shell
set PGPT_PROFILES=my_profile_name_here set PGPT_PROFILES=my_profile_name_here
``` ```
Windows Powershell has a different syntax:
```shell
$env:PGPT_PROFILES="my_profile_name_here"
```
If the above is not working, you might want to try other ways to set an env variable in your window's terminal. If the above is not working, you might want to try other ways to set an env variable in your window's terminal.
--- ---