Skip to content

A FaaS function to generate the first N numbers of the fib sequence

License

Notifications You must be signed in to change notification settings

faas-and-furious/faas-python-fib

Repository files navigation

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)