gcloud - Is there any way to speed up Google Actions SDK development? -
i'm new working google actions sdk, current workflow looks this:
- make changes app.js.
- run 'gcloud app deploy', , wait 8-10 minutes operation complete.
- run 'gactions preview -action_package=action.json -invocation_name="my action"'.
- run 'gactions simulate' or run web simulator.
rinse , repeat. obviously, painful step here gcloud app deployment. there way test changes without having sit through 8-10 minute deployment process each change?
host server (node app.js) ever provided it's accessible via https, , update action.json point it:
"httpexecution": { "url": "https://example.com/myapp" }
then no longer need rely on gcloud. alternatively host locally , make use of ngrok. there's tutorial here:
Comments
Post a Comment