3b3717d307
* Folds=>groups * Show groups on user profile * Allow group creation from /create * Refactoring to groups * Convert folds to groups * Add new add to group notification * Fix user profile tab bug * Add groups nav and tab for my groups * Remove bad profile pages * remove comments * Add group list dropdown to sidebar * remove unused * group cards ui * Messages=>Comments, v2, groupDetails * Discussion time * Cleaning up some code * Remove follow count * Fix pool scoring for cpmm * Fix imports * Simplify rules, add GroupUser collection * Fix group cards * Refactor * Refactor * Small fixes * Remove string * Add api error detail handling * Clear name field * Componentize * Spacing * Undo userpage memo * Member groups are already in my tab * Remove active contracts reference for now * Remove unused * Refactoring * Allow adding old questions to a group * Rename * Wording * Throw standard v2 APIError * Hide input for non-members, add about under title * Multiple names to & # more * Move comments firestore rules to appropriate subpaths * Group membership, pool=>volume * Cleanup, useEvent * Raise state to parent * Eliminate unused * Cleaning up * Clean code * Revert tags input deletion * Cleaning code * Stylling * Limit members to display * Array cleanup * Add categories back in * Private=>closed * Unused vars
36 lines
1.4 KiB
TypeScript
36 lines
1.4 KiB
TypeScript
import { EnvConfig, PROD_CONFIG } from './prod'
|
|
|
|
export const THEOREMONE_CONFIG: EnvConfig = {
|
|
domain: 'theoremone.manifold.markets',
|
|
firebaseConfig: {
|
|
apiKey: 'AIzaSyBSXL6Ys7InNHnCKSy-_E_luhh4Fkj4Z6M',
|
|
authDomain: 'theoremone-manifold.firebaseapp.com',
|
|
projectId: 'theoremone-manifold',
|
|
region: 'us-central1',
|
|
storageBucket: 'theoremone-manifold.appspot.com',
|
|
messagingSenderId: '698012149198',
|
|
appId: '1:698012149198:web:b342af75662831aa84b79f',
|
|
measurementId: 'G-Y3EZ1WNT6E',
|
|
},
|
|
// TODO: fill in real endpoints for T1
|
|
functionEndpoints: {
|
|
placebet: 'https://placebet-nggbo3neva-uc.a.run.app',
|
|
sellshares: 'https://sellshares-nggbo3neva-uc.a.run.app',
|
|
sellbet: 'https://sellbet-nggbo3neva-uc.a.run.app',
|
|
createmarket: 'https://createmarket-nggbo3neva-uc.a.run.app',
|
|
creategroup: 'https://creategroup-nggbo3neva-uc.a.run.app',
|
|
},
|
|
adminEmails: [...PROD_CONFIG.adminEmails, 'david.glidden@theoremone.co'],
|
|
whitelistEmail: '@theoremone.co',
|
|
moneyMoniker: 'T$',
|
|
visibility: 'PRIVATE',
|
|
faviconPath: '/theoremone/logo.ico',
|
|
navbarLogoPath: '/theoremone/TheoremOne-Logo.svg',
|
|
newQuestionPlaceholders: [
|
|
'Will we have at least 5 new team members by the end of this quarter?',
|
|
'Will we meet or exceed our goals this sprint?',
|
|
'Will we sign on 3 or more new clients this month?',
|
|
'Will Paul shave his beard by the end of the month?',
|
|
],
|
|
}
|