Step 1: Build and Run Your Go Project

Get Started with the JFrog Platform

Content Type
Administration / Platform
ft:sourceType
Paligo

Go is a great language for creating simple yet efficient web servers and web services. It provides a built-in HTTP package that contains utilities for quickly creating a web or file server.

  1. Fork the JFrog DevRel GitHub repository. Here you will find the JFrog Go challenge repository, containing the Go project.

  2. Move to the project directory and run the build command:

    $ go build challenge.go
  3. Run thechallengeexecutable file to start the web server on port 9090.

    ./challenge
  4. Openhttp://localhost:9090to check the web server.