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: .env.sample
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -242,3 +242,11 @@ RESEND_API_KEY=re_xxxxxxxxxx
242
242
243
243
# Prisma log type. Ideally should have only error or warn enabled. Having query enabled can add a lot of unwanted logging for all types of queries being run
244
244
# PRISMA_LOGS = error,warn,query
245
+
246
+
# Default is true too, if nothing is passed
247
+
# HIDE_EXPERIMENTAL_OIDC_CONTROLLERS=
248
+
249
+
# Comma separated emails that need to be alerted in case the 'ledgerId' is set to null
250
+
# DB_ALERT_EMAILS=
251
+
# Boolean: to enable/disable db alerts. This needs the 'utility' microservice
thrownewError('DATABASE_URL environment variable is required');
22
+
}else{
23
+
this.pg=newPgClient({
24
+
connectionString: process.env.DATABASE_URL
25
+
});
26
+
}
27
+
}
28
+
}
29
+
30
+
// TODO: I think it would be better, if we add all the event listening and email sending logic in a common library instead of it being scattered across here and the utility microservice
0 commit comments