Skip to content

Commit

Permalink
docs: update steps for setting env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Sourav Sarkar committed Oct 1, 2024
1 parent c316cc1 commit 25efdb3
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions advanced-integration/v2/server/dotnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ PayPal Advanced Integration sample in .NET

1. **Add your API credentials to the environment:**

- **Windows**
- **Windows (powershell)**

```powershell
$env:PAYPAL_CLIENT_ID = "<PAYPAL_CLIENT_ID>"
$env:PAYPAL_CLIENT_SECRET = "<PAYPAL_CLIENT_SECRET>"
```
- **Unix**
- **Linux / MacOS**
```bash
export PAYPAL_CLIENT_ID="<PAYPAL_CLIENT_ID>"
Expand Down
4 changes: 2 additions & 2 deletions advanced-integration/v2/server/java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ PayPal Advanced Integration sample in Java

1. Add your API credentials to the environment:

- **Windows**
- **Windows (powershell)**

```powershell
$env:PAYPAL_CLIENT_ID = "<PAYPAL_CLIENT_ID>"
$env:PAYPAL_CLIENT_SECRET = "<PAYPAL_CLIENT_SECRET>"
```
- **Unix**
- **Linux / MacOS**
```bash
export PAYPAL_CLIENT_ID="<PAYPAL_CLIENT_ID>"
Expand Down
4 changes: 2 additions & 2 deletions advanced-integration/v2/server/node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ PayPal Advanced Integration sample in Node.js

1. Add your API credentials to the environment:

- **Windows**
- **Windows (powershell)**

```powershell
$env:PAYPAL_CLIENT_ID = "<PAYPAL_CLIENT_ID>"
$env:PAYPAL_CLIENT_SECRET = "<PAYPAL_CLIENT_SECRET>"
```
- **Unix**
- **Linux / MacOS**
```bash
export PAYPAL_CLIENT_ID="<PAYPAL_CLIENT_ID>"
Expand Down
4 changes: 2 additions & 2 deletions advanced-integration/v2/server/php/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ This sample app demonstrates how to integrate with ACDC using PayPal's REST APIs

1. Add your API credentials to the environment:

- **Windows**
- **Windows (powershell)**

```powershell
$env:PAYPAL_CLIENT_ID = "<PAYPAL_CLIENT_ID>"
$env:PAYPAL_CLIENT_SECRET = "<PAYPAL_CLIENT_SECRET>"
```
- **Unix**
- **Linux / MacOS**
```bash
export PAYPAL_CLIENT_ID="<PAYPAL_CLIENT_ID>"
Expand Down
4 changes: 2 additions & 2 deletions standard-integration/server/dotnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ PayPal Standard Integration sample in .NET

1. **Add your API credentials to the environment:**

- **Windows**
- **Windows (powershell)**

```powershell
$env:PAYPAL_CLIENT_ID = "<PAYPAL_CLIENT_ID>"
$env:PAYPAL_CLIENT_SECRET = "<PAYPAL_CLIENT_SECRET>"
```
- **Unix**
- **Linux / MacOS**
```bash
export PAYPAL_CLIENT_ID="<PAYPAL_CLIENT_ID>"
Expand Down
4 changes: 2 additions & 2 deletions standard-integration/server/java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ PayPal Standard Integration sample in Java

1. Add your API credentials to the environment:

- **Windows**
- **Windows (powershell)**

```powershell
$env:PAYPAL_CLIENT_ID = "<PAYPAL_CLIENT_ID>"
$env:PAYPAL_CLIENT_SECRET = "<PAYPAL_CLIENT_SECRET>"
```
- **Unix**
- **Linux / MacOS**
```bash
export PAYPAL_CLIENT_ID="<PAYPAL_CLIENT_ID>"
Expand Down
4 changes: 2 additions & 2 deletions standard-integration/server/node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ PayPal Standard Integration sample in Node.js

1. Add your API credentials to the environment:

- **Windows**
- **Windows (powershell)**

```powershell
$env:PAYPAL_CLIENT_ID = "<PAYPAL_CLIENT_ID>"
$env:PAYPAL_CLIENT_SECRET = "<PAYPAL_CLIENT_SECRET>"
```
- **Unix**
- **Linux / MacOS**
```bash
export PAYPAL_CLIENT_ID="<PAYPAL_CLIENT_ID>"
Expand Down
4 changes: 2 additions & 2 deletions standard-integration/server/php/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ This sample app demonstrates how to integrate with ACDC using PayPal's REST APIs

1. Add your API credentials to the environment:

- **Windows**
- **Windows (powershell)**

```powershell
$env:PAYPAL_CLIENT_ID = "<PAYPAL_CLIENT_ID>"
$env:PAYPAL_CLIENT_SECRET = "<PAYPAL_CLIENT_SECRET>"
```
- **Unix**
- **Linux / MacOS**
```bash
export PAYPAL_CLIENT_ID="<PAYPAL_CLIENT_ID>"
Expand Down

0 comments on commit 25efdb3

Please sign in to comment.