community/boilerplates/event-triggers/azure-functions/nodejs/mutation/README.md
Table name: notes
Columns:
id: Integer auto-increment
note: Text
Table name: note_revision
Columns:
id: Integer auto-increment
note: Text
note_id: Integer (foreign key to notes.id)
update_at: Timestamp, default `now()`
az group create --name 'my-functions-group' --location southindia
az storage account create --name 'myfunctionsstorage' --location southindia --resource-group 'my-functions-group' --sku Standard_LRS
az functionapp create --name 'myfunctionsapp' --storage-account 'myfunctionsstorage' --resource-group 'my-functions-group' --consumption-plan-location southindia
func azure login
func azure subscriptions set 'Free Trial'
func azure functionapp publish 'myfunctionsapp'
ADMIN_SECRET and HGE_ENDPOINTfunc host start
func azure functionapp logstream 'myfunctionsapp'