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
Then inside your project's `serverless.yml` file add following entry to the plugins section: `serverless-offline`. If there is no plugin section you will need to add it to the file.
41
41
42
42
It should look something like this:
43
43
```YAML
44
44
plugins:
45
-
- serverless-offline
45
+
- serverless-offline-python
46
46
```
47
47
48
48
You can check wether you have successfully installed the plugin by running the serverless command line:
0 commit comments