Loading repository data…
Loading repository data…
howdy39 / repository
A starter template for Google Apps Script by clasp
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A starter template for Google Apps Script by google/clasp
git clone --depth=1 https://github.com/howdy39/gas-clasp-starter.git <project_name>
cd <project_name>
rm -Rf .git
npm install
.clasp.json, change scriptIdWhat is scriptId ? https://github.com/google/clasp#scriptid-required
{
"scriptId": <your_script_id>,
"rootDir": "dist"
}
.package.json, change propertiesThe name, version, description, and homepage properties are output as comments at the beginning of the output GAS.
...
"name": "your application name",
"version": "your application version",
"description": "your application description",
"homepage" "your repository url"
...
src/appsscript.json, change timeZone (optional){
"timeZone": "Asia/Tokyo", ## Change timeZone
"dependencies": {
},
"exceptionLogging": "STACKDRIVER"
}
npm run build
npm run push
This software is released under the MIT License, see LICENSE.txt.