mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-03-24 17:41:27 -04:00
* Fixed Type errors * Added Database checks to the onboarding flow * Updated Onboarding flow Changed type ChildrenExpectation so that it can be used for database verification * Added compatibility page setup Added more compatibility questions * Finished up the onboarding flow suite Added compatibility question tests and verifications Updated tests to cover Keywords and Headline changes recently made Updated tests to cover all of the big5 personality traits * Apply suggestions from code review --------- Co-authored-by: Martin Braquet <martin.braquet@gmail.com>
48 lines
2.0 KiB
TypeScript
48 lines
2.0 KiB
TypeScript
export const MIN_INT = Number.MIN_SAFE_INTEGER
|
|
export const MAX_INT = Number.MAX_SAFE_INTEGER
|
|
|
|
export const supportEmail = 'hello@compassmeet.com'
|
|
// export const marketingEmail = 'hello@compassmeet.com'
|
|
|
|
export const githubRepoSlug = 'CompassConnections/Compass'
|
|
export const githubRepo = `https://github.com/${githubRepoSlug}`
|
|
export const githubIssues = `${githubRepo}/issues`
|
|
|
|
export const paypalLink = 'https://www.paypal.com/paypalme/CompassConnections'
|
|
export const openCollectiveLink = 'https://opencollective.com/compass-connection'
|
|
export const liberapayLink = 'https://liberapay.com/CompassConnections'
|
|
export const patreonLink = 'https://patreon.com/CompassMeet'
|
|
export const discordLink = 'https://discord.gg/8Vd7jzqjun'
|
|
export const stoatLink = 'https://stt.gg/YKQp81yA'
|
|
export const redditLink = 'https://www.reddit.com/r/CompassConnect'
|
|
export const xLink = 'https://x.com/compassmeet'
|
|
export const instagramLink = 'https://www.instagram.com/compassmeet/'
|
|
export const formLink = 'https://forms.gle/tKnXUMAbEreMK6FC6'
|
|
export const ANDROID_APP_URL =
|
|
'https://play.google.com/store/apps/details?id=com.compassconnections.app'
|
|
|
|
export const IS_MAINTENANCE = false // set to true to enable the maintenance mode banner
|
|
|
|
export const MIN_BIO_LENGTH = 250
|
|
|
|
export const WEB_GOOGLE_CLIENT_ID =
|
|
'253367029065-khkj31qt22l0vc3v754h09vhpg6t33ad.apps.googleusercontent.com'
|
|
// export const ANDROID_GOOGLE_CLIENT_ID = '253367029065-s9sr5vqgkhc8f7p5s6ti6a4chqsrqgc4.apps.googleusercontent.com'
|
|
export const GOOGLE_CLIENT_ID = WEB_GOOGLE_CLIENT_ID
|
|
|
|
export const defaultLocale = 'en'
|
|
export const LOCALES = {
|
|
en: 'English',
|
|
fr: 'Français',
|
|
de: 'Deutsch',
|
|
// es: "Español",
|
|
} as const
|
|
|
|
export const supportedLocales = Object.keys(LOCALES)
|
|
export type Locale = (typeof supportedLocales)[number]
|
|
|
|
//Exported types for test files to use when referencing the keys of the choices objects
|
|
export type LocaleTuple = {
|
|
[K in keyof typeof LOCALES]: [K, (typeof LOCALES)[K]]
|
|
}[keyof typeof LOCALES]
|