Last active
October 24, 2021 19:57
-
-
Save yoandresaav/0e0dc4250b4855acb7d8609f75e49f52 to your computer and use it in GitHub Desktop.
Firebase Tricks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load emulators | |
firebase emulators:start --import=./saved-data --export-on-exit | |
# Acceder a functions | |
$ export GOOGLE_APPLICATION_CREDENTIALS="path/to/key.json" | |
$ firebase functions:shell | |
# kill pid | |
lsof -t -i tcp:5000 | xargs kill | |
# deploy only hosting | |
firebase deploy --only hosting |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment