├── A-nest ├── .firebaserc ├── .gitignore ├── firebase.json └── server │ ├── .prettierrc │ ├── README.md │ ├── dist │ ├── app.controller.d.ts │ ├── app.controller.js │ ├── app.controller.js.map │ ├── app.module.d.ts │ ├── app.module.js │ ├── app.module.js.map │ ├── app.service.d.ts │ ├── app.service.js │ ├── app.service.js.map │ ├── index.d.ts │ ├── index.js │ ├── index.js.map │ ├── main.d.ts │ ├── main.js │ ├── main.js.map │ └── tsconfig.build.tsbuildinfo │ ├── nest-cli.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── app.controller.spec.ts │ ├── app.controller.ts │ ├── app.module.ts │ ├── app.service.ts │ ├── index.ts │ └── main.ts │ ├── test │ ├── app.e2e-spec.ts │ └── jest-e2e.json │ ├── tsconfig.build.json │ ├── tsconfig.json │ └── tslint.json ├── B-functions ├── .firebaserc ├── .gitignore ├── firebase.json └── functions │ ├── .gitignore │ ├── lib │ ├── app.controller.d.ts │ ├── app.module.d.ts │ ├── egg │ │ └── egg.controller.d.ts │ ├── index.d.ts │ ├── main.d.ts │ └── tsconfig.tsbuildinfo │ ├── nest-cli.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── app.module.ts │ ├── egg │ │ └── egg.controller.ts │ └── index.ts │ ├── tsconfig.json │ └── tslint.json └── README.md /A-nest/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/.firebaserc -------------------------------------------------------------------------------- /A-nest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/.gitignore -------------------------------------------------------------------------------- /A-nest/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/firebase.json -------------------------------------------------------------------------------- /A-nest/server/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/.prettierrc -------------------------------------------------------------------------------- /A-nest/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/README.md -------------------------------------------------------------------------------- /A-nest/server/dist/app.controller.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/dist/app.controller.d.ts -------------------------------------------------------------------------------- /A-nest/server/dist/app.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/dist/app.controller.js -------------------------------------------------------------------------------- /A-nest/server/dist/app.controller.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/dist/app.controller.js.map -------------------------------------------------------------------------------- /A-nest/server/dist/app.module.d.ts: -------------------------------------------------------------------------------- 1 | export declare class AppModule { 2 | } 3 | -------------------------------------------------------------------------------- /A-nest/server/dist/app.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/dist/app.module.js -------------------------------------------------------------------------------- /A-nest/server/dist/app.module.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/dist/app.module.js.map -------------------------------------------------------------------------------- /A-nest/server/dist/app.service.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/dist/app.service.d.ts -------------------------------------------------------------------------------- /A-nest/server/dist/app.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/dist/app.service.js -------------------------------------------------------------------------------- /A-nest/server/dist/app.service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/dist/app.service.js.map -------------------------------------------------------------------------------- /A-nest/server/dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/dist/index.d.ts -------------------------------------------------------------------------------- /A-nest/server/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/dist/index.js -------------------------------------------------------------------------------- /A-nest/server/dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/dist/index.js.map -------------------------------------------------------------------------------- /A-nest/server/dist/main.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /A-nest/server/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/dist/main.js -------------------------------------------------------------------------------- /A-nest/server/dist/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/dist/main.js.map -------------------------------------------------------------------------------- /A-nest/server/dist/tsconfig.build.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/dist/tsconfig.build.tsbuildinfo -------------------------------------------------------------------------------- /A-nest/server/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/nest-cli.json -------------------------------------------------------------------------------- /A-nest/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/package-lock.json -------------------------------------------------------------------------------- /A-nest/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/package.json -------------------------------------------------------------------------------- /A-nest/server/src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/src/app.controller.spec.ts -------------------------------------------------------------------------------- /A-nest/server/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/src/app.controller.ts -------------------------------------------------------------------------------- /A-nest/server/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/src/app.module.ts -------------------------------------------------------------------------------- /A-nest/server/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/src/app.service.ts -------------------------------------------------------------------------------- /A-nest/server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/src/index.ts -------------------------------------------------------------------------------- /A-nest/server/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/src/main.ts -------------------------------------------------------------------------------- /A-nest/server/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /A-nest/server/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/test/jest-e2e.json -------------------------------------------------------------------------------- /A-nest/server/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/tsconfig.build.json -------------------------------------------------------------------------------- /A-nest/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/tsconfig.json -------------------------------------------------------------------------------- /A-nest/server/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/A-nest/server/tslint.json -------------------------------------------------------------------------------- /B-functions/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/B-functions/.firebaserc -------------------------------------------------------------------------------- /B-functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/B-functions/.gitignore -------------------------------------------------------------------------------- /B-functions/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/B-functions/firebase.json -------------------------------------------------------------------------------- /B-functions/functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/B-functions/functions/.gitignore -------------------------------------------------------------------------------- /B-functions/functions/lib/app.controller.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/B-functions/functions/lib/app.controller.d.ts -------------------------------------------------------------------------------- /B-functions/functions/lib/app.module.d.ts: -------------------------------------------------------------------------------- 1 | export declare class AppModule { 2 | } 3 | -------------------------------------------------------------------------------- /B-functions/functions/lib/egg/egg.controller.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/B-functions/functions/lib/egg/egg.controller.d.ts -------------------------------------------------------------------------------- /B-functions/functions/lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/B-functions/functions/lib/index.d.ts -------------------------------------------------------------------------------- /B-functions/functions/lib/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/B-functions/functions/lib/main.d.ts -------------------------------------------------------------------------------- /B-functions/functions/lib/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/B-functions/functions/lib/tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /B-functions/functions/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/B-functions/functions/nest-cli.json -------------------------------------------------------------------------------- /B-functions/functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/B-functions/functions/package-lock.json -------------------------------------------------------------------------------- /B-functions/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/B-functions/functions/package.json -------------------------------------------------------------------------------- /B-functions/functions/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/B-functions/functions/src/app.module.ts -------------------------------------------------------------------------------- /B-functions/functions/src/egg/egg.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/B-functions/functions/src/egg/egg.controller.ts -------------------------------------------------------------------------------- /B-functions/functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/B-functions/functions/src/index.ts -------------------------------------------------------------------------------- /B-functions/functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/B-functions/functions/tsconfig.json -------------------------------------------------------------------------------- /B-functions/functions/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/B-functions/functions/tslint.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/nest-cloud-functions/HEAD/README.md --------------------------------------------------------------------------------