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
15 lines
462 B
TypeScript
15 lines
462 B
TypeScript
import { EnvConfig, PROD_CONFIG } from './prod'
|
|
|
|
export const DEV_CONFIG: EnvConfig = {
|
|
...PROD_CONFIG,
|
|
firebaseConfig: {
|
|
apiKey: 'AIzaSyBoq3rzUa8Ekyo3ZaTnlycQYPRCA26VpOw',
|
|
authDomain: 'dev-mantic-markets.firebaseapp.com',
|
|
projectId: 'dev-mantic-markets',
|
|
storageBucket: 'dev-mantic-markets.appspot.com',
|
|
messagingSenderId: '134303100058',
|
|
appId: '1:134303100058:web:27f9ea8b83347251f80323',
|
|
measurementId: 'G-YJC9E37P37',
|
|
},
|
|
}
|