5 lines
268 B
TypeScript
5 lines
268 B
TypeScript
export const PROTOCOL = Deno.env.get("GERBEUR_PROTOCOL") || "http";
|
|
export const HOSTNAME = Deno.env.get("GERBEUR_HOSTNAME") || "localhost";
|
|
export const PORT = Number(Deno.env.get("GERBEUR_PORT")) || 8000;
|
|
export const BASE_URL = `${PROTOCOL}://${HOSTNAME}:${PORT}`;
|