-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
163134b
commit e9f01a5
Showing
7 changed files
with
27 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,22 @@ | ||
module.exports = { | ||
appTitle: "Library Card Application Form", | ||
appName: "NYPL Library Card App", | ||
favIconPath: "https://ux-static.nypl.org/images/favicon.ico", | ||
api: { | ||
oauth: process.env.OAUTH_PROVIDER_URL, | ||
patron: process.env.PATRON_CREATION_URL, | ||
validate: process.env.PATRON_VALIDATION_URL, | ||
}, | ||
clientId: process.env.OAUTH_CLIENT_ID, | ||
clientSecret: process.env.OAUTH_CLIENT_SECRET, | ||
ipStackKey: process.env.IPSTACK_KEY, | ||
nodeEnv: process.env.NODE_ENV, | ||
agencyType: { | ||
default: "198", | ||
nys: "199", | ||
}, | ||
scopes: "account:write account:read", | ||
dsHeader: process.env.NEXT_PUBLIC_DS_GLOBAL_HEADER, | ||
dsFooter: process.env.NEXT_PUBLIC_DS_GLOBAL_FOOTER, | ||
adobeAnalyticsTag: process.env.NEXT_PUBLIC_ADOBE_ANALYTICS_TAG, | ||
cookieDomain: process.env.COOKIE_DOMAIN, | ||
export const appTitle = "Library Card Application Form" | ||
export const appName = "NYPL Library Card App" | ||
export const favIconPath = "https://ux-static.nypl.org/images/favicon.ico" | ||
export const api = { | ||
oauth: process.env.OAUTH_PROVIDER_URL, | ||
patron: process.env.PATRON_CREATION_URL, | ||
validate: process.env.PATRON_VALIDATION_URL, | ||
}; | ||
export const clientId = process.env.OAUTH_CLIENT_ID | ||
export const clientSecret = process.env.OAUTH_CLIENT_SECRET | ||
export const ipStackKey = process.env.IPSTACK_KEY | ||
export const nodeEnv = process.env.NODE_ENV | ||
export const agencyType = { | ||
default: "198", | ||
nys: "199", | ||
}; | ||
export const scopes = "account:write account:read" | ||
export const dsHeader = process.env.NEXT_PUBLIC_DS_GLOBAL_HEADER | ||
export const dsFooter = process.env.NEXT_PUBLIC_DS_GLOBAL_FOOTER | ||
export const adobeAnalyticsTag = process.env.NEXT_PUBLIC_ADOBE_ANALYTICS_TAG | ||
export const cookieDomain = process.env.COOKIE_DOMAIN | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters