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 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
Click to show internal directories.
Click to hide internal directories.