Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

608: Add applicationUrl to build config #609

Merged
merged 2 commits into from
Nov 21, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion frontend/build-configs/bayern/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ export const bayernCommon: CommonBuildConfigType = {
},
featureFlags: {
verification: false,
}
},
applicationUrl: "https://bayern.ehrenamtskarte.app/apply-for-eak",
};

let bayern: BuildConfigType = {
Expand Down
5 changes: 3 additions & 2 deletions frontend/build-configs/nuernberg/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const nuernbergCommon: CommonBuildConfigType = {
},
mapStyleUrl: {
production: "https://api.entitlementcard.app/project/nuernberg.sozialpass.app/map",
showcase: "https://tiles.entitlementcard.app/project/showcase.entitlementcard.app/map",
showcase: "https://api.entitlementcard.app/project/showcase.entitlementcard.app/map",
local: "http://localhost:8000/project/nuernberg.sozialpass.app/map",
},
backendUrl: {
Expand All @@ -25,7 +25,8 @@ export const nuernbergCommon: CommonBuildConfigType = {
},
featureFlags: {
verification: true,
}
},
applicationUrl: "https://nuernberg.sozialpass.app/apply-for-eak",
maxammann marked this conversation as resolved.
Show resolved Hide resolved
};

let nuernberg: BuildConfigType = {
Expand Down
3 changes: 2 additions & 1 deletion frontend/build-configs/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ export type CommonBuildConfigType = {
showcase: string,
production: string,
local: string,
}
},
theme: ThemeType
categories: number[]
featureFlags: FeatureFlagsType
applicationUrl: string,
}

export type AndroidBuildConfigType = CommonBuildConfigType & {
Expand Down