languages via containerization Pay as you go! Integration with Google Cloud ecosystem Google Cloud Run functions highlights 1. Go 2. NodeJS 3. Python 4. Java 5. .NET Core 6. Ruby 7. PHP
the Console 3. Create a project 4. If this is your first time, you might need to setup a billing profile and input your card details 😟 5. Go to “Cloud Run” 6. Add a service a. Select runtime(doesn’t have to be NodeJS) b. Give the function a name c. Keep the defaults 7. It might take some time to create, it’s fine. 8. Study/Absorb the environment - focus on source. 9. Deploy and test 🚀
code editor 3. Install & setup google cloud CLI - gcloud. 4. Instructions at: https://cloud.google.com/sdk/docs/install 5. Add extra endpoint 6. Ensure you’re in the right project a. “gcloud config set project <project-ID>” 7. Modify code 8. Run deploy: a. gcloud beta run deploy random-number-generator-func --source . --function "helloHttp"