From baf8ac5083f43053678f240424b7792c87fd1844 Mon Sep 17 00:00:00 2001 From: Stephen Cresswell <229672+cressie176@users.noreply.github.com> Date: Tue, 9 Jan 2024 05:14:21 +0000 Subject: [PATCH] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 0d8bf6e..1323743 100644 --- a/README.md +++ b/README.md @@ -379,17 +379,27 @@ add change set: "database": "fby_example", "password": "fby_example" }, + // Specifies the path to the migrations folder. Defaults to "migrations" "migrations": "path/to/migrations/folder", + "notifications": { + // The frequency Filby will check for new notifications + // Defaults to 1 minute "interval": "5s", + // The initial delay before Filby starts checking for notifications // (you still have to call filby.startNotifications) + // Defaults to 10s "intialDelay": "1s", + // THe maximum number of times Filby will attempt to deliver a hook + // Defaults to 10 "maxAttempts": 20, + // The maximum amount of time Filby will wait before retrying a failed hook + // Defaults to 1 hour "maxRescheduleDelay": "30s" } }