DEV Community

Cover image for Setting up a free & production-ready web app backend in Go (with database) in less than 100 lines
Simon Johansson for Encore

Posted on • Updated on

Setting up a free & production-ready web app backend in Go (with database) in less than 100 lines

https://github.com/encoredev/examples/tree/main/meeting-notes

In this tutorial, we will create a backend in Go using Encore in less than 100 lines of code. The backend will:

  • Store data in a cloud SQL database
  • Make API calls to a third-party service
  • Deploy to the cloud and be publicly available (free and production-ready)

Encore is a backend development platform that helps you get production-ready Go backends up and running in the cloud, very quickly. It's ideal for both hobby projects and startups as it abstracts away all of the cloud infrastructure nonsense, and comes with free backend deployments and hosting through Encore Cloud. (And if your product becomes a huge success, you can connect Encore to AWS or GCP and deploy your backend there.)

The example app we will build is a markdown meeting notes app BUT it’s trivial to replace the specifics if you have another idea in mind (again, less than 100 lines of code).

Demo version of the app

meeting notes app

To develop with Encore, you need the Encore CLI. It compiles your code and runs your local development dashboard:

# Mac
$ brew install encoredev/tap/encore

# Win
$ iwr <https://encore.dev/install.ps1> | iex

# Linux
$ curl -L <https://encore.dev/install.sh> | bash
Enter fullscreen mode Exit fullscreen mode

Create a new app from the meeting-notes example. This will start you off with everything described in this tutorial:

$ encore app create meeting-notes --example=github.com/encoredev/example-meeting-notes
Enter fullscreen mode Exit fullscreen mode

You will be asked to create a free account. This will be needed later when we use Encore Could to deploy our app.

Before running the project locally, make sure you have Docker installed and running. Docker is needed for Encore to create databases for locally running projects. Also, if you want to try the photo search functionality then you will need an API key from pexels.com/api/ (more on that below)

To run the backend locally:

$ cd you-app-name # replace with the app name you picked
$ encore run
Enter fullscreen mode Exit fullscreen mode

You should see the following:

encore run

That means your local development backend is up and running! Encore takes care of setting up all the necessary infrastructure for your application, including databases. Encore also starts the local development dashboard which is a tool to help you move faster when you're developing new features.

encore dev dashboard

To start the front-end, run the following commands in another terminal window:

$ cd you-app-name/frontend
$ npm install
$ npm run dev
Enter fullscreen mode Exit fullscreen mode

You can now open http://localhost:5173/example-meeting-notes/ in your browser 🔥

Storing and retrieving from an SQL database

Let's take a look at the backend code. There are essentially only three files of interest, let's start by looking at note.go. This file contains two endpoints and one interface, all standard Go code except for a few lines specific to Encore.

The Note type represents our data structure:

type Note struct {
    ID       string `json:"id"`
    Text     string `json:"text"`
    CoverURL string `json:"cover_url"`
}
Enter fullscreen mode Exit fullscreen mode

Every note will have an ID (uuid that is created on the frontend), Text (Markdown text content), and CoverURL (background image URL).

The SaveNote function handles storing a meeting note:

//encore:api public method=POST path=/note
func SaveNote(ctx context.Context, note *Note) (*Note, error) {
    // Save the note to the database.
    // If the note already exists (i.e. CONFLICT), we update the notes text and the cover URL.
    _, err := sqldb.Exec(ctx, `
        INSERT INTO note (id, text, cover_url) VALUES ($1, $2, $3)
        ON CONFLICT (id) DO UPDATE SET text=$2, cover_url=$3
    `, note.ID, note.Text, note.CoverURL)

    // If there was an error saving to the database, then we return that error.
    if err != nil {
        return nil, err
    }

    // Otherwise, we return the note to indicate that the save was successful.
    return note, nil
}
Enter fullscreen mode Exit fullscreen mode

The comment above the function tells Encore that this is a public endpoint that should be reachable by POST on /note. The second argument to the function (Note) is the POST body and the function returns a Note and an error (a nil error means a 200 response).

The GetNote function takes care of fetching a meeting note from our database given an id:

//encore:api public method=GET path=/note/:id
func GetNote(ctx context.Context, id string) (*Note, error) {
    note := &Note{ID: id}

    // We use the note ID to query the database for the note's text and cover URL.
    err := sqldb.QueryRow(ctx, `
        SELECT text, cover_url FROM note
        WHERE id = $1
    `, id).Scan(&note.Text, &note.CoverURL)

    // If the note doesn't exist, we return an error.
    if err != nil {
        return nil, err
    }

    // Otherwise, we return the note.
    return note, nil
}
Enter fullscreen mode Exit fullscreen mode

Here we have a public GET endpoint with a dynamic path parameter which is the id of the meeting note to fetch. The second argument, in this case, is the dynamic path parameter, a request to this endpoint will look like /note/123-abc where id will be set to 123-abc.

Both SaveNote and GetNote makes use of a SQL database table named note, let's look at how that table is defined.

Defining a SQL database

To create a SQL database using Encore we first create a folder named migrations and inside that folder a migration file named 1_create_tables.up.sql. The file name is important (it must look something like 1_.up.sql). Our migration file is only five lines long and looks like this:

CREATE TABLE note (
    id TEXT PRIMARY KEY,
    text TEXT,
    cover_url TEXT
);
Enter fullscreen mode Exit fullscreen mode

When recognizing this file, Encore will create a note table with three columns id, text and cover_url. The id is the primary key, used to identify specific meeting notes.

Making requests to a third-party API

Let's look at how we can use an Encore endpoint to proxy requests to a third-party service (in this example photo service pexels.com but the idea would be the same for any other third-party API).

The file pexels.go only has one endpoint, SearchPhoto:

//encore:api public method=GET path=/images/:query
func SearchPhoto(ctx context.Context, query string) (*SearchResponse, error) {
    // Create a new http client to proxy the request to the Pexels API.
    URL := "https://api.pexels.com/v1/search?query=" + query
    client := &http.Client{}
    req, _ := http.NewRequest("GET", URL, nil)

    // Add authorization header to the req with the API key.
    req.Header.Set("Authorization", secrets.PexelsApiKey)

    // Make the request, and close the response body when we're done.
    res, err := client.Do(req)
    if err != nil {
        return nil, err
    }
    defer res.Body.Close()

    if res.StatusCode >= 400 {
        return nil, fmt.Errorf("Pexels API error: %s", res.Status)
    }

    // Decode the data into the searchResponse struct.
    var searchResponse *SearchResponse
    err = json.NewDecoder(res.Body).Decode(&searchResponse)
    if err != nil {
        return nil, err
    }

    return searchResponse, nil
}
Enter fullscreen mode Exit fullscreen mode

Again a GET endpoint with a dynamic path parameter which this time represents the query text we want to send to the Pexels API.

The type we use to decode the response from the Pexels API looks like this:

type SearchResponse struct {
    Photos []struct {
        Id  int `json:"id"`
        Src struct {
            Medium    string `json:"medium"`
            Landscape string `json:"landscape"`
        } `json:"src"`
        Alt string `json:"alt"`
    } `json:"photos"`
}
Enter fullscreen mode Exit fullscreen mode

We get a lot more data from Pexels but here we only pick the fields that we want to propagate to our frontend.

Pexels API requires an API key, as most open APIs do. The API key is added as a header to the requests (from the SearchPhoto function above):

req.Header.Set("Authorization", secrets.PexelsApiKey)
Enter fullscreen mode Exit fullscreen mode

Here we could have hardcoded the API key but that would have made it readable for everyone with access to our repo. Instead, we made use of Encore's built-in secrets management. To set this secret, run the following command in your project folder and follow the prompt:

encore secret set --type dev,prod,local,pr PexelsApiKey
Enter fullscreen mode Exit fullscreen mode

Creating a request client

Encore is able to generate frontend request clients (TypeScript or JavaScript). This means that you do not need to manually keep the request/response objects in sync on the frontend, huge time saver. To generate a client run:

$ encore gen client <APP_NAME> --output=./src/client.ts --env=<ENV_NAME>
Enter fullscreen mode Exit fullscreen mode

You are going to want to run this command quite often (whenever you make a change to your endpoints) so having it as an npm script is a good idea:

{
...
"scripts": {
    ...
    "generate-client:staging": "encore gen client <Encore app id here> --output=./src/client.ts --env=staging",
    "generate-client:local": "encore gen client <Encore app id here> --output=./src/client.ts --env=local"
  },
}
Enter fullscreen mode Exit fullscreen mode

After that you are ready to use the request client in your code. Here is an example of calling the GetNote endpoint:

import Client, { Environment, Local } from "src/client.ts";

// Making request to locally running backend...
const client = new Client(Local);
// or to a specific deployed environment
const client = new Client(Environment("staging"));

// Calling APIs as typesafe functions 🌟
const response = await client.note.GetNote("note-uuid");
console.log(response.id);
console.log(response.cover_url);
console.log(response.text);
Enter fullscreen mode Exit fullscreen mode

Deploying the backend to the cloud

It’s deploy time! To get your backend deployed in the cloud all you need to do is to commit your code and push it to the encore remote:

$ git add -A .
$ git commit -m 'Initial commit'
$ git push encore
Enter fullscreen mode Exit fullscreen mode

When running git push encore you will get a link to the Encore Cloud dashboard where you can view the deploy for your app and after about a minute you have a backend running in the cloud ☁️

encore cloud dashboard

Hosting the frontend

The frontend can be deployed to any static site hosting platform. The example project is pre-configured to deploy the frontend to GitHub Pages. Take a look at .github/workflows/node.yml to see the GitHub actions workflow being triggered on new commits to the repo:

name: Build and Deploy

on: [push]

permissions:
  contents: write

jobs:
  build-and-deploy:
    concurrency: ci-${{ github.ref }}
    runs-on: ubuntu-latest
    defaults:
      run:
        working-directory: frontend

    steps:
      - name: Checkout 🛎️
        uses: actions/checkout@v3

      - name: Use Node.js
        uses: actions/setup-node@v3
        with:
          node-version: '16.15.1'

      - name: Install and Build 🔧
        run: |
          npm install
          npm run build

      - name: Deploy 🚀
        uses: JamesIves/github-pages-deploy-action@v4.3.3
        with:
          branch: gh-pages
          folder: frontend/dist
Enter fullscreen mode Exit fullscreen mode

The interesting part is towards the bottom where we build the frontend code and make use of the github-pages-deploy-action step to automatically make a new commit with the compiled frontend code to a gh-pages branch.

Steps to deploy to GitHub pages:

  1. Create a repo on GitHub
  2. In the vite.config.js file, set the base property to the name of your repo:
base: "/my-repo-name/",
Enter fullscreen mode Exit fullscreen mode
  1. Push your code to GitHub and wait for the GitHub actions workflow to finish.
  2. Go to Settings → Pages for your repo on GitHub and set Branch to gh-pages.

Wrapping up

 Great job! You now have a complete app running in the cloud!

You’ve learned how to build and deploy a Go backend using Encore, store data in an SQL database, and make API calls to an external service.

Encore lets you build production-ready backends with none of the boilerplate and manual work involved in setting up real cloud infrastructure. If you want to continue building more advanced applications, I recommend checking out the other Encore tutorials available.🔥

Top comments (0)