Skip to content

Commit

Permalink
eb-app-api, chore: test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
emrahcom committed Mar 2, 2024
1 parent 643cfd8 commit 3b30c49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions machines/eb-app-api/home/api/galaxy/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const PORT_ADMIN = 8000;
export const PORT_PRIVATE = 8001;
export const PORT_PUBLIC = 8002;

// database
// postgres
export const DB_NAME = Deno.env.get("DB_NAME") || "galaxy";
export const DB_USER = Deno.env.get("DB_USER") || "galaxy";
export const DB_PASSWD = Deno.env.get("DB_PASSWD") || "";
Expand All @@ -14,7 +14,7 @@ export const DB_POOL_SIZE = 8;
export const DEFAULT_LIST_SIZE = 10;
export const MAX_LIST_SIZE = 100;

// app
// application
export const GALAXY_FQDN = Deno.env.get("GALAXY_FQDN") || "";
export const API_SECRET = Deno.env.get("API_SECRET") || "mysecret";
export const API_TIMEOUT = Number(Deno.env.get("API_TIMEOUT") || 86400);
Expand Down

0 comments on commit 3b30c49

Please sign in to comment.