Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 425 Bytes

README.md

File metadata and controls

22 lines (14 loc) · 425 Bytes

faas-python-fib

An OpenFaaS function to generate the first N fibonacci numbers

Install it

$ faas-cli -action build -f ./stack.yml
$ faas-cli -action deploy -f ./stack.yml

Run it

You can execute the function like this:

$ curl http://localhost:8080/function/fib -d "10"

(or use the FaaS UI to send the URL)