manifold/functions/src/index.ts
James Grugett 60f68b178d
Folds (#34)
* Fold type, fold page, query for fold contracts

* Tsconfig: target esnext, nounused locals: false

* Store tags in field on contract. Script to update contract tags

* Show tags on fold page

* Load all fold comments server-side to serve better feed

* Fix the annoying firebase already initialized error!

* Add links to /edit and /leaderboards for fold

* Page with list of folds

* UI for creating a fold

* Create a fold

* Edit fold page
2022-01-21 17:21:46 -06:00

17 lines
439 B
TypeScript

import * as admin from 'firebase-admin'
admin.initializeApp()
// export * from './keep-awake'
export * from './markets'
export * from './place-bet'
export * from './resolve-market'
export * from './stripe'
export * from './sell-bet'
export * from './create-contract'
export * from './create-user'
export * from './create-fold'
export * from './unsubscribe'
export * from './update-contract-metrics'
export * from './update-user-metrics'