From 1f61144f2814f90d9f2678dfaa5396e28d59cd73 Mon Sep 17 00:00:00 2001 From: Vivek Teega Date: Fri, 2 Jun 2023 03:06:01 +0530 Subject: [PATCH] Added examples of config files --- .gitignore | 3 ++- config/access_token_example.json | 3 +++ config/sheet_data_example.json | 8 ++++++++ 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 config/access_token_example.json create mode 100644 config/sheet_data_example.json diff --git a/.gitignore b/.gitignore index e29b418..287329b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ .DS_Store node_modules/ -config/ +config/access_token.json +config/sheet_data.json access_token.json sheet_data.json \ No newline at end of file diff --git a/config/access_token_example.json b/config/access_token_example.json new file mode 100644 index 0000000..0eb6262 --- /dev/null +++ b/config/access_token_example.json @@ -0,0 +1,3 @@ +{ + "note":"download this from the Google Cloud console of your service account" +} \ No newline at end of file diff --git a/config/sheet_data_example.json b/config/sheet_data_example.json new file mode 100644 index 0000000..e513a95 --- /dev/null +++ b/config/sheet_data_example.json @@ -0,0 +1,8 @@ +{ + "revenue_spreadsheetId": "asgaljknwrjkgnjawerHvri37_WJw-w9CMIKRmCVB8oHoibJrfH6ARbyU", + "TR_Expenses_range": "Expenses!A1:A7", + "TR_Consumption_range": "Revenue!B5:B22", + "TR_Consumption_Valuation_Price_USD": 30, + "booking_spreadsheetId": "wrgwkrngkjtOBsihp12mCea-X0RzhYAzXOFd8UqPU", + "Booking_range": "TokenRoom!C6:C19" +} \ No newline at end of file