coyotte508 HF staff commited on
Commit
8bb1351
β€’
1 Parent(s): 17d2394

πŸ§‘β€πŸ’» Explicit error message when MongoDB configuration lacking (#208)

Browse files
Files changed (1) hide show
  1. src/lib/server/database.ts +6 -0
src/lib/server/database.ts CHANGED
@@ -6,6 +6,12 @@ import type { AbortedGeneration } from "$lib/types/AbortedGeneration";
6
  import type { Settings } from "$lib/types/Settings";
7
  import type { User } from "$lib/types/User";
8
 
 
 
 
 
 
 
9
  const client = new MongoClient(MONGODB_URL, {
10
  // directConnection: true
11
  });
 
6
  import type { Settings } from "$lib/types/Settings";
7
  import type { User } from "$lib/types/User";
8
 
9
+ if (!MONGODB_URL) {
10
+ throw new Error(
11
+ "Please specify the MONGODB_URL environment variable inside .env.local. Set it to mongodb://localhost:27017 if you are running MongoDB locally, or to a MongoDB Atlas free instance for example."
12
+ );
13
+ }
14
+
15
  const client = new MongoClient(MONGODB_URL, {
16
  // directConnection: true
17
  });