Skip to content

Commit

Permalink
OPHYK-213 Start organisaatio service containers on prod
Browse files Browse the repository at this point in the history
  • Loading branch information
rce committed Dec 13, 2024
1 parent 869d265 commit 18555dc
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions infra/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ type EnvironmentName = (typeof environments)[number];

const defaultConfig = {
virkailijaHost: "",
minCapacity: 0,
maxCapacity: 0,
minCapacity: 1,
maxCapacity: 1,
};

export type Config = typeof defaultConfig;
Expand Down Expand Up @@ -32,22 +32,16 @@ export function getConfig(): Config {
export const hahtuva: Config = {
...defaultConfig,
virkailijaHost: "virkailija.hahtuvaopintopolku.fi",
minCapacity: 1,
maxCapacity: 1,
};

export const dev: Config = {
...defaultConfig,
virkailijaHost: "virkailija.untuvaopintopolku.fi",
minCapacity: 1,
maxCapacity: 1,
};

export const qa: Config = {
...defaultConfig,
virkailijaHost: "virkailija.testiopintopolku.fi",
minCapacity: 1,
maxCapacity: 1,
};

export const prod: Config = {
Expand Down

0 comments on commit 18555dc

Please sign in to comment.