-
|
Hi there, thanks for this awesome project! This is more of a question than an issue - do you have any recommendation for how to interact with the sheet during local development? I am running It works fine when I deploy the whole thing to GAS though, so not a big deal if there's not a way to interact with the backend locally. Thanks again! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hi @jsmeng324. I'm glad that you find this project helpful. 😊 Unfortunately the Google object is only available if the project is accessed via the Apps Script Web App (e.g. https://script.google.com/macros/{script-id}/exec) because Google then connects the corresponding script. Follow these steps to test your app before deploy:
clasp openand the script opens in the browser.
npm run build
With this method you can test your Web-App before creating a new deployment.If you don't read this already, look here → How to deploy and test your app. |
Beta Was this translation helpful? Give feedback.
Hi @jsmeng324.
I'm glad that you find this project helpful. 😊
Unfortunately the Google object is only available if the project is accessed via the Apps Script Web App (e.g. https://script.google.com/macros/{script-id}/exec) because Google then connects the corresponding script.
Follow these steps to test your app before deploy:
and the script opens in the browser.
Deployand thenTest Deployment.The Web-App opens in a new tab.
Keep the tab open in your browser.