da4ce99755
* Add dev target for TheoremOne * Restrict signups to theoremone.co emails * Add new indices * Forbid reads from unauthenticated users * Client-side render pages that need auth These pages are now client-side rendered: - /home - /leaderboards - /market/... - /fold/... * Hide 404 for private Manifolds * Brand instance for TheoremOne * Hide "Add Funds" and "Personalize your feed" * "M$" => "T$" * Hide Discord & About Page too * Update placeholders for teams * Update firestore.indexes.json * Switch /analytics to propz * Migrate per-env code into common/ * More migrations to PROJECT_ID * Conditionally use SSG depending on public vs private instance * Fix props to be empty object * Move more logic into access * Spin out config files for each environment * Generify most of the customizable brand stuff * Move IS_PRIVATE_MANIFOLD to access.ts * Rename access.ts to envs/constants.ts * Add "dev:dev" alias * Rever firestore rules to existing settings * Fixes according to James's review
56 lines
1.5 KiB
TypeScript
56 lines
1.5 KiB
TypeScript
export type EnvConfig = {
|
|
domain: string
|
|
firebaseConfig: FirebaseConfig
|
|
|
|
// Access controls
|
|
adminEmails: string[]
|
|
whitelistEmail?: string // e.g. '@theoremone.co'. If not provided, all emails are whitelisted
|
|
visibility: 'PRIVATE' | 'PUBLIC'
|
|
|
|
// Branding
|
|
moneyMoniker: string // e.g. 'M$'
|
|
faviconPath?: string // Should be a file in /public
|
|
navbarLogoPath?: string
|
|
newQuestionPlaceholders: string[]
|
|
}
|
|
|
|
type FirebaseConfig = {
|
|
apiKey: string
|
|
authDomain: string
|
|
projectId: string
|
|
storageBucket: string
|
|
messagingSenderId: string
|
|
appId: string
|
|
measurementId: string
|
|
}
|
|
|
|
export const PROD_CONFIG: EnvConfig = {
|
|
domain: 'manifold.markets',
|
|
firebaseConfig: {
|
|
apiKey: 'AIzaSyDp3J57vLeAZCzxLD-vcPaGIkAmBoGOSYw',
|
|
authDomain: 'mantic-markets.firebaseapp.com',
|
|
projectId: 'mantic-markets',
|
|
storageBucket: 'mantic-markets.appspot.com',
|
|
messagingSenderId: '128925704902',
|
|
appId: '1:128925704902:web:f61f86944d8ffa2a642dc7',
|
|
measurementId: 'G-SSFK1Q138D',
|
|
},
|
|
adminEmails: [
|
|
'akrolsmir@gmail.com', // Austin
|
|
'jahooma@gmail.com', // James
|
|
'taowell@gmail.com', // Stephen
|
|
'manticmarkets@gmail.com', // Manifold
|
|
],
|
|
visibility: 'PUBLIC',
|
|
|
|
moneyMoniker: 'M$',
|
|
navbarLogoPath: '',
|
|
faviconPath: '/favicon.ico',
|
|
newQuestionPlaceholders: [
|
|
'Will anyone I know get engaged this year?',
|
|
'Will humans set foot on Mars by the end of 2030?',
|
|
'Will any cryptocurrency eclipse Bitcoin by market cap this year?',
|
|
'Will the Democrats win the 2024 presidential election?',
|
|
],
|
|
}
|