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
Running this command: firebase database:set --project MyProject / myJsonData.json gives me the error: Path must begin with /. Which it does. I want to erase existing data in the root of my project and upload my new json. Tried putting the / in quotes (" and ') but no luck.
The text was updated successfully, but these errors were encountered:
This worked for me. firebase database:set //new_node my-data.json
This made a new node called new_node in the database for the project that I'm initialized too and uploaded the json data to it.
Running this command:
firebase database:set --project MyProject / myJsonData.json
gives me the error:Path must begin with /
. Which it does. I want to erase existing data in the root of my project and upload my new json. Tried putting the/
in quotes (" and ') but no luck.The text was updated successfully, but these errors were encountered: