Skip to content

ntxinh/azure-serverless-web-application

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2c10911 · Mar 12, 2020

History

17 Commits
Dec 21, 2019
Nov 4, 2019
Mar 12, 2020
Mar 12, 2020
Oct 28, 2019
Oct 28, 2019
Oct 28, 2019
Mar 12, 2020
Oct 28, 2019
Oct 24, 2019
Oct 24, 2019
Oct 24, 2019
Oct 29, 2019

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