From f1a312887d8aa09f5ff0294be6dc3c67159d6ab6 Mon Sep 17 00:00:00 2001 From: samjtro Date: Sun, 3 Nov 2024 19:37:12 -0600 Subject: [PATCH] minor: ref: #67, v0.9.0 desc: - README update --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 47c06df..3112581 100644 --- a/README.md +++ b/README.md @@ -29,14 +29,14 @@ SECRET=KEY1 // App Secret CBURL=https://127.0.0.1 // App Callback URL ``` -2. we use tls for the oauth handshake between your local machine & schwab to ensure secure transmission of your bearer token. run the following command to generate ssl certs: +2. run the following command in your cwd to generate ssl certs for secure tls transmission of your bearer token: ``` openssl req -x509 -out localhost.crt -keyout localhost.key -newkey rsa:2048 -nodes -sha256 -subj '/CN=localhost' -extensions EXT -config <( \ printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS.1:localhost,IP:127.0.0.1\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth") ``` -2. `go get github.com/go-schwab/trader@v0.9.0` +3. `go get github.com/go-schwab/trader@v0.9.0` ### 0.1 agent