DEV Community

Aneesh Anil
Aneesh Anil

Posted on

Using Cloud Firestore Emulator for local development

I want to build a small project, I would like to host it as well. So I did some digging and found out Google Cloud offers free tier upto a limit. This is awesome, all I need is a laptop and an internet connection and I can create a small startup from home!

My basic concern is where to store data? Cloud Firestore is a NoSQL document database.

Project Setup

I have never worked with NoSQL databases, so I wanted to try it. The setup is pretty straightforward, go to Cloud Console and Click Add Project and follow the flow to setup a project. Once that is complete navigate to the Cloud Firestore section of the Firebase console. You'll be prompted to select an existing Firebase project. Follow the database creation workflow. Google has super docs on how to setup project and firestore.

Now we don't want to use this database for development, we would like to keep that for prod use only, that is where emulator comes in.

Installing Emulator

To install the emulator Firebase CLI needs to installed already. Check if it is installed by running the command firebase --version if that showed a version you are good otherwise proceed to install it. For Linux/MacOS running the auto-install script (curl -sL https://firebase.tools | bash) is the simplest way to do that. For more info and on how to install in Windows OS check out this docs.
Once the script completes successfully check if the installation is successful or not by using the command firebase --version. Then navigate to your project and init firebase firebase init. Then initialise emulators firebase init emulators and select Firebase from options.

To start the emulator locally use cmd firebase emulators:start and in the browser open the Emulator UI.

Now to connect to the Firestore emulator using Go, download the dependency go get firebase.google.com/go.

// imports
...
"cloud.google.com/go/firestore"
firebase "firebase.google.com/go"
"google.golang.org/api/option"
...

// Use the application default credentials
ctx := context.Background()
conf := &firebase.Config{ProjectID: os.Getenv("GCP_PROJECT_ID")}
app, err := firebase.NewApp(ctx, conf)
if err != nil {
    log.Fatalln(err)
}

client, err := app.Firestore(ctx)
if err != nil {
    log.Fatalln(err)
}
return client
Enter fullscreen mode Exit fullscreen mode

Now use that client to talk to the database

_, _, err := client.Collection("users").Add(ctx, map[string]interface{}{
    "first":  "Alan",
    "middle": "Mathison",
    "last":   "Turing",
    "born":   1912,
})
if err != nil {
    log.Fatalf("Failed adding aturing: %v", err)
}
Enter fullscreen mode Exit fullscreen mode

You should see this document in the Emulator UI.

Persisting the data

When we exit the emulator we loose the data.
To persist the data across multiple sessions use firebase emulators:start --import <export-directory> --export-on-exit will import the data on startup and save the data on exit.

A more detailed explanation can be found here.

Oldest comments (0)