8000 GitHub - ntxinh/azure-serverless-web-application: Serverless web application on Azure (.NET Core 2.1)
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ntxinh/azure-serverless-web-application

Repository files navigation

azure-serverless-web-application

Serverless web application

https://github.com/mspnp/serverless-reference-implementation

Command

# List commands
func init --docker
func new

# Run with Azure Functions Core Tools
cd Web && func host start

# Run with VSCode
Ctrl + Shift + P > Tasks: Run Task > func: host start

# Run with Docker
docker build -t <imageName> .
# Example: docker build -t sample .
docker run -p <port> <imageName>
# Example: docker run -p 8080:80 sample
0