gasup 0.3.2 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -56,6 +56,20 @@ Deploy to the latest deployment. If no previous deployments exist, a new deploym
|
|
|
56
56
|
gasup --deploy
|
|
57
57
|
```
|
|
58
58
|
|
|
59
|
+
appsscript.json affects deployment. Be sure to check your appsscript.json.
|
|
60
|
+
|
|
61
|
+
If you want to deploy webapp, appsscript is like below.
|
|
62
|
+
|
|
63
|
+
```json
|
|
64
|
+
{
|
|
65
|
+
...
|
|
66
|
+
"webapp": {
|
|
67
|
+
"executeAs": "USER_DEPLOYING",
|
|
68
|
+
"access": "ANYONE_ANONYMOUS"
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
```
|
|
72
|
+
|
|
59
73
|
### Change Environment
|
|
60
74
|
|
|
61
75
|
If you need to switch between different environments (e.g., development, staging, production), you can use the --env flag to modify the appsscript.json file accordingly.
|