feat: use LOG_LEVEL from env
This commit is contained in:
@@ -17,5 +17,8 @@ export const SESSION_DURATION = duration ? +duration : (60 * 60 * 24);
|
||||
|
||||
export const JWT_SECRET = Deno.env.get("JWT_SECRET");
|
||||
|
||||
export const TYPESENSE_URL = Deno.env.get("TYPESENSE_URL")||"http://localhost:8108"
|
||||
export const TYPESENSE_API_KEY = Deno.env.get("TYPESENSE_API_KEY")
|
||||
export const TYPESENSE_URL = Deno.env.get("TYPESENSE_URL") ||
|
||||
"http://localhost:8108";
|
||||
export const TYPESENSE_API_KEY = Deno.env.get("TYPESENSE_API_KEY");
|
||||
|
||||
export const LOG_LEVEL = Deno.env.get("LOG_LEVEL") || "warn";
|
||||
|
||||
Reference in New Issue
Block a user