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
@@ -240,3 +240,11 @@ RESEND_API_KEY=re_xxxxxxxxxx
240
240
241
241
# 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
242
242
# PRISMA_LOGS = error,warn,query
243
+
244
+
# Default is true too, if nothing is passed
245
+
# HIDE_EXPERIMENTAL_OIDC_CONTROLLERS=
246
+
247
+
# Comma separated emails that need to be alerted in case the 'ledgerId' is set to null
248
+
# DB_ALERT_EMAILS=
249
+
# 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