From f799abc08fdd733affe19893017abd264ed02011 Mon Sep 17 00:00:00 2001 From: justinjtownsend Date: Wed, 6 Jul 2022 17:01:08 +0100 Subject: [PATCH] Updated README.md with PowerShell specific syntax SET syntax tends to be a little older, proposed the specific addition of PowerShell format as the prevailing convention. Working with this repo, adjusted the SET convention to use the PowerShell convention to achieve successful connection for an IG account. Thank you for all this documentation. Cheers. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9d1777b..3834bc8 100644 --- a/README.md +++ b/README.md @@ -22,10 +22,10 @@ Create environment variables for your IG credentials. This can be done in your O or in your Windows CLI as: - $ SET IG_API_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx - $ SET IG_IDENTIFIER=xxxxxxxxxxxx - $ SET IG_PASSWORD=xxxxxxxxxxxx - $ SET IG_DEMO=TRUE + $env:IG_API_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx + $env:IG_IDENTIFIER=xxxxxxxxxxxx + $env:IG_PASSWORD=xxxxxxxxxxxx + $env:IG_DEMO=TRUE (clearly the "x" values should be your actual IG credentials and IG_DEMO should be FALSE for the live version!)