COnfig?
This commit is contained in:
parent
4fd2b61322
commit
b186a40103
11
config.ts
Normal file
11
config.ts
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
import file from "@/config.json" assert { type: "json" };
|
||||||
|
|
||||||
|
const defaults: Record<string, [string, (val: string) => unknown]> = {
|
||||||
|
DATABASE_URL: ["postgresql://postgres:@127.0.0.1:5432/lyricscreen",
|
||||||
|
};
|
||||||
|
|
||||||
|
export const envs = Object.entries(defaults).map(([key, default]) => {
|
||||||
|
const val: string | null = Deno.env.get(key) || null;
|
||||||
|
if (!val) console.warn(`${key} not set!`);
|
||||||
|
return val;
|
||||||
|
});
|
Loading…
Reference in a new issue