Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 366 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 366 Bytes

Examples on building Azure Functions in Rust

Build & Deploy

cd hello-world
cargo build --release
cp ../target/release/hello-world .
func azure functionapp publish ${FUNCTION_NAME} --custom | strings

Test Locally

In shell one:

func start | strings

In shell two:

curl https://${FUNCTION_NAME}.azurewebsites.net/api/hello