Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1 KB

README.md

File metadata and controls

37 lines (25 loc) · 1 KB

namegen

namegen is Ionburst Cloud's adaption of the name generation functionality used by Docker to name containers. We've then added our own Scottish twist, using the names of famous Scottish inventors, scientists and engineers.

Using namegen

Our initial release will cover a Go package and accompanying CLI tool, with plans to support the following languages:

  • .NET
  • Javascript/Node.js
  • Python

CLI usage

[example@namegen-example ~]$ namegen
powerful_watt

Go usage

package main

import (
	"fmt"

	"gitlab.com/ionburst/namegen/namegen"
)

func main() {
	fmt.Println(namegen.GetRandomName())
}

Contributing to namegen

If you have any suggestions for additional adjectives, names of famous Scottish inventors, scientists, or engineers for namegen, feel free to open an issue on GitHub or GitLab.