You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Welcome to serverless. Read the fn provider docs# https://serverless.com/framework/docs/providers/fn/# Serverless.yml is the configuration the CLI# uses to deploy your code to your provider of choice# The `service` block is the name of the serviceservice:
name: new-fn-projectplugins:
- serverless-fn# The `provider` block defines where your service will be deployedprovider:
name: fn# The `functions` block defines what code to deployfunctions:
hello: # <- hello references the ./hello folder and the func.js file insidename: helloversion: 0.0.1idletimeout: 45format: jsonmemory: 256# config:# another: valueruntime: nodeevents:
- http:
path: /hello
Hello,
I'm trying to use serverless-fn plugin along with serverless-framework 2.72.3 or the latest 3.X.
I followed this tutorial https://www.serverless.com/framework/docs/providers/fn/guide/quick-start
Here my serverless.yml:
And this is my package.json
But each time I try to deploy with serverless deploy, I have the following :
The problem seems to be Configuration warning: Unrecognized provider 'fn'
Is this plugin completely dead ?
Thank you for your time
Maxime
The text was updated successfully, but these errors were encountered: