-
Notifications
You must be signed in to change notification settings - Fork 0
/
env.json
24 lines (24 loc) · 1.06 KB
/
env.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"AzureWebJobsStorage": {
"description": "This is the Azure storage connection string that the function uses. This should be created automatically with the function."
},
"AZURE_STORAGE_CONNECTION_STRING": {
"description": "This is the Azure storage connection string that houses the CMS schema. Schema will be output here."
},
"KENTICO_CLOUD_PROJECT_ID": {
"description": "This is the Project ID provided by Kentico Cloud. You can find it in the admin panel."
},
"FUNCTIONS_WORKER_RUNTIME": {
"description": "This is the runtime of the function. It must be `node`.",
"validators": [{
"name": "equals",
"options": "node"
}]
},
"SCHEMA_STORAGE_CONTAINER_NAME": {
"description": "This is the desired name of the container within the CMS schema Azure storage (same storage as AZURE_STORAGE_CONNECTION_STRING) where the schema will be output."
},
"SCHEMA_STORAGE_BLOB_NAME": {
"description": "This is the name of the blob (file) that the CMS schema will be written to. It should have a file extension of `.graphql`."
}
}