Environment variables
How to set up the function execution environment.
{
"name": "helloWorld",
"description": "Http function that responds with Hello World!",
"tags": [ "demo", "first-function"],
"trigger": {
"provider": "https",
"event": "request"
},
"env": [{
"name": "SOME_VAR",
"description": "Check the implementation in main.js to see how we use the environment variable while coding."
}, {
"name": "ANOTHER_VAR",
"description": "Check the implementation in main.js to see how we use the environment variable while coding."
}]
}Last updated