From b2af2fc98c59ac7a92efa207c3ee73e7dffd18c2 Mon Sep 17 00:00:00 2001 From: Ben Miller Date: Sun, 3 Nov 2024 20:00:26 -0700 Subject: [PATCH] initial checkout of appscript --- product_inventory.code-workspace | 8 ++++++++ src/.clasp.json | 1 + src/Code.js | 3 +++ src/appsscript.json | 7 +++++++ 4 files changed, 19 insertions(+) create mode 100644 product_inventory.code-workspace create mode 100644 src/.clasp.json create mode 100644 src/Code.js create mode 100644 src/appsscript.json diff --git a/product_inventory.code-workspace b/product_inventory.code-workspace new file mode 100644 index 0000000..6e12a8c --- /dev/null +++ b/product_inventory.code-workspace @@ -0,0 +1,8 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": {} +} \ No newline at end of file diff --git a/src/.clasp.json b/src/.clasp.json new file mode 100644 index 0000000..659c478 --- /dev/null +++ b/src/.clasp.json @@ -0,0 +1 @@ +{"scriptId":"1qGGz2kPw4eE0Tt2wk34PWoNF0xtvZHLxq1I1dzigNC4yXrTfgtxShnuq","rootDir":"src"} diff --git a/src/Code.js b/src/Code.js new file mode 100644 index 0000000..f8f2594 --- /dev/null +++ b/src/Code.js @@ -0,0 +1,3 @@ +function myFunction() { + +} diff --git a/src/appsscript.json b/src/appsscript.json new file mode 100644 index 0000000..5f07d9e --- /dev/null +++ b/src/appsscript.json @@ -0,0 +1,7 @@ +{ + "timeZone": "America/Denver", + "dependencies": { + }, + "exceptionLogging": "STACKDRIVER", + "runtimeVersion": "V8" +} \ No newline at end of file