https://github.com/graphql-editor/stucco-js-azure-worker
Javascript runtime for Azure Functions and stucco worker functions
https://github.com/graphql-editor/stucco-js-azure-worker
Last synced: 8 months ago
JSON representation
Javascript runtime for Azure Functions and stucco worker functions
- Host: GitHub
- URL: https://github.com/graphql-editor/stucco-js-azure-worker
- Owner: graphql-editor
- Created: 2020-03-04T13:21:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T20:26:41.000Z (over 3 years ago)
- Last Synced: 2025-02-21T15:51:38.871Z (over 1 year ago)
- Language: TypeScript
- Size: 1.92 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
Javascript runtime for Stucco functions in Azure Functions host
# Usage
Build new image with your function like this:
```
FROM gqleditor/stucco-js-azure-worker:node12
ENV AzureWebJobsScriptRoot=/home/site/wwwroot \
AzureFunctionsJobHost__Logging__Console__IsEnabled=true
COPY . /home/site/wwwroot
RUN cd /home/site/wwwroot && \
npm install --production
WORKDIR /home/site/wwwroot
```