You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds the following logic in `secrets.sh` (no diff because it's binary and encrypted, but the following does not contain sensitive data:
```sh
# Firestore
if [ "$GOOGLE_PROJECT_ID" = "$GOOGLE_ALT_PROJECT_ID" ]; then
# If an alt project hasn't been specified, we need to pick one because
# there is no default Firestore project
export FIRESTORE_PROJECT_ID=${GOOGLE_ALT_PROJECT_ID}1-fs
else
export FIRESTORE_PROJECT_ID=${GOOGLE_ALT_PROJECT_ID}-fs
fi
```
0 commit comments