├── .firebaserc ├── .gitignore ├── .idea ├── .gitignore ├── cloud_function_test.iml └── modules.xml ├── README.md ├── firebase.json └── functions ├── .eslintrc.js ├── .gitignore ├── index.js ├── package-lock.json └── package.json /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmadBeltaje/firebase_cloud_functions_emulator/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmadBeltaje/firebase_cloud_functions_emulator/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmadBeltaje/firebase_cloud_functions_emulator/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/cloud_function_test.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmadBeltaje/firebase_cloud_functions_emulator/HEAD/.idea/cloud_function_test.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmadBeltaje/firebase_cloud_functions_emulator/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmadBeltaje/firebase_cloud_functions_emulator/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmadBeltaje/firebase_cloud_functions_emulator/HEAD/firebase.json -------------------------------------------------------------------------------- /functions/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmadBeltaje/firebase_cloud_functions_emulator/HEAD/functions/.eslintrc.js -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmadBeltaje/firebase_cloud_functions_emulator/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmadBeltaje/firebase_cloud_functions_emulator/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmadBeltaje/firebase_cloud_functions_emulator/HEAD/functions/package.json --------------------------------------------------------------------------------