Cheatsheet
I'm not googling that again
This one is pretty simple.
# Get the emulator running
gcloud beta emulators bigtable start \
--host-port=localhost:9000
# Let cbt know where to connect to
$(gcloud beta emulators bigtable env-init)
# ^ will set the BIGTABLE_EMULATOR_HOST variable
cbt ls
# >
cbt -project fake-project -instance fake-instance \
createtable some-table
# >
cbt ls
some-table
There it is. Change the config on whatever client you're using and you're good to go.