🔖 Starter kit for Google Cloud Functions using TypeScript.
✅ Run functions locally (functions framework)
✅ Live reloading (nodemon)
✅ TypeScript ESLint
✅ Prettier
- gcloud
- Node
- yarn or npm
Edit config in package.json
"config": {
"project": "projectName", // Your Google Cloud project
"function": "helloWorld" // Name of function
},
For a live reloading local dev server, run
yarn start
To deploy, run
yarn deploy