Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 1.77 KB

CLASP_README.md

File metadata and controls

53 lines (36 loc) · 1.77 KB

gas-template

yarn v4 + clasp + typescriptのGAS開発環境テンプレート

Getting Started

Clone Repository

  1. RepositoryのURLをコピーする
  2. VSCodeのコマンドパレットで Clone Repository in Container と入力し、Dev Containers: Clone Repository in Container Volume… を選択
  3. コピーしたGitHubのURLをペーストして Enter

初期設定

yarn
yarn clasp login

新規GASプロジェクトを作成する場合

  1. 以下のコマンドを実行( {projectName} は別の値に置き換える)
yarn clasp create --title={projectName}
mv build/.clasp.json .clasp.prod.json
  1. build/appsscript.jsonをプロジェクトにあわせて修正する
  • 特に oauthScopes
  1. 必要に応じてdev環境を用意する

GoogleDrive上にある既存のGASプロジェクトを利用する場合

  1. プロジェクトのrootDirに.clasp.prod.json(必要に応じて.clasp.dev.json)を手動で作成する
    ※ .clasp.prod.jsonの内容は以下の通り
    {
      "scriptId": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
      "rootDir": "build"
    }
    
  2. build/appsscript.jsonをプロジェクトにあわせて修正する

参考URL