From 44b3a601452bdc264df89b7831d8d76a2041bdb0 Mon Sep 17 00:00:00 2001 From: Jessy Barrette <30420025+JessyBarrette@users.noreply.github.com> Date: Fri, 6 Dec 2024 13:45:03 +0000 Subject: [PATCH] add login step to readme --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a615de64..29e302b7 100644 --- a/README.md +++ b/README.md @@ -75,15 +75,21 @@ We use a GitHub Actions workflow named `firebase-deploy` for deploying Firebase To deploy updated Firebase functions to the "cioos-metadata-form-dev-258dc" development project, follow these steps: -1. **Ensure your local setup is linked to the correct Firebase project** by using the Firebase CLI to login and select the "cioos-metadata-form-dev-258dc" project. +1. **Login** to firebase + + ```bash + firebase login + ``` + +2. **Ensure your local setup is linked to the correct Firebase project** by using the Firebase CLI to login and select the "cioos-metadata-form-dev-258dc" project. ```bash firebase use cioos-metadata-form-dev-258dc ``` -2. **Make necessary changes to your Firebase functions.** +3. **Make necessary changes to your Firebase functions.** -3. **Deploy the changes by running the command:** +4. **Deploy the changes by running the command:** From the `./firebase-functions/functions` directory run the command: ```bash