From 7ec4f96cba4d90728d04032d016bacaefd6a2dfc Mon Sep 17 00:00:00 2001 From: James Woglom Date: Tue, 16 Mar 2021 20:40:15 -0400 Subject: [PATCH] Update README.md - quote values in env file --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e1e4141..b9056ec 100644 --- a/README.md +++ b/README.md @@ -22,18 +22,18 @@ Create a file named `.env` containing configuration values. You should specify t ```bash # Your credentials for t:connect -TCONNECT_EMAIL=email@email.com -TCONNECT_PASSWORD=password +TCONNECT_EMAIL='email@email.com' +TCONNECT_PASSWORD='password' # Your pump's serial number (numeric) PUMP_SERIAL_NUMBER=11111111 # URL and API secret for Nightscout -NS_URL=https://yournightscouturl/ -NS_SECRET=apisecret +NS_URL='https://yournightscouturl/' +NS_SECRET='apisecret' # Current timezone of the pump -TIMEZONE_NAME=America/New_York +TIMEZONE_NAME='America/New_York' ``` This file contains your t:connect username and password, Tandem pump serial number (which is utilized in API calls to t:connect), your Nightscout URL and secret token (for uploading data to Nightscout), and local timezone (the timezone used in t:connect).