We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 119f609 commit 91e59f2Copy full SHA for 91e59f2
packages/server/src/index.ts
@@ -3,6 +3,7 @@ import { Server } from "@hocuspocus/server";
3
import * as dotenv from "dotenv";
4
import { SupabaseHocuspocus } from "./hocuspocus/extension-supabase/SupabaseHocuspocus.js";
5
6
+console.log("pre", process.env.VITE_TYPECELL_SUPABASE_SERVICE_KEY);
7
if (process.env.MODE === "development") {
8
dotenv.config({ path: ".env.development" });
9
} else if (process.env.MODE === "staging") {
@@ -14,6 +15,7 @@ if (process.env.MODE === "development") {
14
15
"Invalid MODE, run with env MODE=development|staging|production"
16
);
17
}
18
+console.log("post", process.env.VITE_TYPECELL_SUPABASE_SERVICE_KEY);
19
20
const server = Server.configure({
21
extensions: [new Logger(), new SupabaseHocuspocus({})],
0 commit comments