Skip to content

Commit 1bfb843

Browse files
committed
Add CRON and Email Notifications
1 parent 638ceaf commit 1bfb843

27 files changed

+2002
-15
lines changed

.env.example

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1+
# https://cloud.browser-use.com/billing
12
BROWSER_USE_API_KEY=""
23

4+
# https://resend.com/
5+
RESEND_API_KEY=""
6+
RESEND_FROM_EMAIL="[email protected]"

drizzle/0001_greedy_mandarin.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
CREATE TYPE "public"."cron_cadence" AS ENUM('hourly', 'daily');--> statement-breakpoint
2+
ALTER TABLE "suite" ADD COLUMN "cron_cadence" "cron_cadence";--> statement-breakpoint
3+
ALTER TABLE "suite" ADD COLUMN "last_cron_run_at" timestamp;

drizzle/0002_crazy_chamber.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE "suite" ADD COLUMN "notifications_email_address" text;

0 commit comments

Comments
 (0)