anchorcli

package
v0.0.35 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 14, 2024 License: MIT Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var CategoryApache = &Category{
	ID:          5,
	Key:         "apache",
	Name:        "Apache",
	Description: "An Apache Web Server",
	Section:     SectionWebServer,
}

Web Servers

View Source
var CategoryCaddy = &Category{
	ID:          6,
	Key:         "caddy",
	Name:        "Caddy",
	Description: "A Caddy Web Server",
	Section:     SectionWebServer,
	Glyph:       "caddy-logo",
}
View Source
var CategoryCustom = &Category{
	ID:          0,
	Key:         "custom",
	Name:        "Custom",
	Description: "A custom service",
	Glyph:       "code",
}

Languages

View Source
var CategoryDebian = &Category{
	ID:          12,
	Key:         "debian",
	Name:        "Debian/Ubuntu",
	Description: "A Debian/Ubuntu System",
	Section:     SectionSystem,
	Glyph:       "debian-logo",
	PkgFormat:   Deb,
}
View Source
var CategoryDiagnostic = &Category{
	ID:          13,
	Key:         "diagnostic",
	Name:        "lcl.host Diagnostic",
	Description: "lcl.host Diagnostic System",
	Glyph:       "code",
}
View Source
var CategoryGo = &Category{
	ID:          1,
	Key:         "go",
	Name:        "Go",
	Description: "A Go Application",
	Glyph:       "language-go",
	Section:     SectionApplication,
	PkgFormat:   GoMod,
}
View Source
var CategoryJavascript = &Category{
	ID:          2,
	Key:         "javascript",
	Name:        "Javascript",
	Description: "A JavaScript Application",
	Section:     SectionApplication,
	Glyph:       "language-javascript",
	PkgFormat:   NPM,
}
View Source
var CategoryLocalhost = &Category{
	ID:          11,
	Key:         "localhost",
	Name:        "System",
	Description: "A lcl.host System",
	Section:     SectionSystem,
	Glyph:       "terminal",
}

Systems/Browsers

View Source
var CategoryMonogoDB = &Category{
	ID:          8,
	Key:         "mongodb",
	Name:        "MongoDB",
	Description: "A MongoDB Database",
	Section:     SectionDatabase,
	Glyph:       "server-2",
}

Databases

View Source
var CategoryMySQL = &Category{
	ID:          9,
	Key:         "mysql",
	Name:        "MySQL",
	Description: "A MySQL Database",
	Section:     SectionDatabase,
	Glyph:       "server-2",
}
View Source
var CategoryNginx = &Category{
	ID:          7,
	Key:         "nginx",
	Name:        "Nginx",
	Description: "An Nginx Web Server",
	Section:     SectionWebServer,
}
View Source
var CategoryPostgreSQL = &Category{
	ID:          10,
	Key:         "postgresql",
	Name:        "PostgreSQL",
	Description: "A PostgreSQL Database",
	Section:     SectionDatabase,
	Glyph:       "server-2",
}
View Source
var CategoryPython = &Category{
	ID:          3,
	Key:         "python",
	Name:        "Python",
	Description: "A Python Application",
	Section:     SectionApplication,
	Glyph:       "language-python",
	PkgFormat:   SDist,
}
View Source
var CategoryRuby = &Category{
	ID:          4,
	Key:         "ruby",
	Name:        "Ruby",
	Description: "A Ruby Application",
	Section:     SectionApplication,
	Glyph:       "language-ruby",
	PkgFormat:   Gem,
}

Functions

This section is empty.

Types

type Category

type Category struct {
	ID          int           `json:"id"`
	Key         string        `json:"key"`
	Name        string        `json:"name"`
	Description string        `json:"description"`
	Glyph       string        `json:"glyph"`
	Section     Section       `json:"section"`
	PkgFormat   PackageFormat `json:"pkgFormat"`
}

func (Category) String

func (c Category) String() string

type PackageFormat

type PackageFormat string
const (
	Deb   PackageFormat = "deb"
	Gem   PackageFormat = "gem"
	GoMod PackageFormat = "gomod"
	NPM   PackageFormat = "npm"
	SDist PackageFormat = "sdist"
)

func (PackageFormat) String

func (p PackageFormat) String() string

type Section

type Section string
const (
	SectionApplication Section = "application"
	SectionWebServer   Section = "web_server"
	SectionDatabase    Section = "database"
	SectionSystem      Section = "system"
)

func (Section) String

func (s Section) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL