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
Copy file name to clipboardExpand all lines: README.md
+3-6Lines changed: 3 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ You must have this plugin installed and correctly specified statemachine definit
52
52
Example of statemachine definition you can see [here](https://github.com/horike37/serverless-step-functions#setup).
53
53
54
54
# Usage
55
-
After all steps are done, need to add to section **custom** in serverless.yml the key **stepFunctionsOffline** with properties *stateName*: path to lambda function.
55
+
After all steps are done, need to add to section **custom** in serverless.yml the key **stepFunctionsOffline** with properties *stateName*: name of lambda function.
56
56
57
57
For example:
58
58
@@ -66,10 +66,10 @@ plugins:
66
66
67
67
custom:
68
68
stepFunctionsOffline:
69
-
StepOne: firstLambda
69
+
stepOne: firstLambda (v2.0)
70
70
# ...
71
71
# ...
72
-
stepTwo: secondLambda
72
+
stepTwo: secondLambda (v2.0)
73
73
74
74
functions:
75
75
firstLambda:
@@ -132,9 +132,6 @@ By default `process.env.STEP_IS_OFFLINE = true`.
132
132
- [ ] Add unit tests - to make plugin stable (next step) - [ ] Support fields *Retry*, *Catch*
133
133
- [ ] Support other languages except node.js
134
134
135
-
136
-
If you have any questions, feel free to contact me: vkkis1993@gmail.com
0 commit comments