Skip to content

michsu0927/go-zeit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Go

In this example we will be deploying a simple "Hello World" example with GoLang.

Getting started with Go

  • Create a index.go file with the following code:
package main

import (
	"fmt"
	"net/http"
)

func Handler(w http.ResponseWriter, r *http.Request) {
	fmt.Fprintf(w, "Hello from Go on Now 2.0!")
}

Deploy with Now

First we need to create a now.json configuration file to instruct Now how to build the project.

For this example we will be using our newest version Now 2.0.

By adding the version key to the now.json file, we can specify which Now Platform version to use.

We also need to define each builders we would like to use. Builders are modules that take a deployment's source and return an output, consisting of either static files or dynamic Lambdas.

In this case we are going to use @now/go to build and deploy the all GoLang files. We will also define a name for our project (optional).

{
    "version": 2,
    "name": "go",
    "builds": [
        { "src": "*.go", "use": "@now/go" }
    ]
}

Visit our documentation for more information on the now.json configuration file.

We are now ready to deploy the app.

now

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages