Migrate from Firebase
The CLI includes built-in migration tools to move data from Firebase projects into Globio.
See also: Full migration guide
Migrate Firestore
Import Firestore collections into GlobalDoc:
globio migrate firestore --from <path>Flags
--from <path> # required — path to Firebase service account JSON
--collection <name> # migrate a specific collection only
--all # migrate all collections
--profile <name>
--jsonExample
# Migrate all collections
globio migrate firestore --from ./service-account.json --all
# Migrate a specific collection
globio migrate firestore --from ./service-account.json --collection playersThe CLI automatically creates matching GlobalDoc collections and indexes.
Migrate Firebase Storage
Import files from Firebase Storage into GlobalVault:
globio migrate firebase-storage --from <path> --bucket <name>Flags
--from <path> # required — path to Firebase service account JSON
--bucket <name> # required — Firebase Storage bucket name
--folder <path> # migrate a specific folder only
--all # migrate all files
--profile <name>
--jsonExample
# Migrate all files
globio migrate firebase-storage \
--from ./service-account.json \
--bucket my-game.appspot.com \
--all
# Migrate a specific folder
globio migrate firebase-storage \
--from ./service-account.json \
--bucket my-game.appspot.com \
--folder avatarsLast updated on
