SSBAndroid_cloudFunction Firebase Cloud Function --- managing server-side code for Study Space Booking Android Application 1. use npm to install firebase tools npm install -g firebase-tools 2. log in to firebase firebase login 3. init project firebase init functions 4. Edit the functions in index.js using javascript 5. Files explained: package.json: Dependency information and the project configuration details; node_modules: Modules configured and installed with the help of package.json 6. Deloy the functions to firebase cloud function firebase deploy --only functions Notes: I also made use of Google Cloud Platform(Cloud Scheduler) together with the cloud function.