Change site title

3192dd095b948b566555d7de79bcba537b409ea8
Alexis Sellier committed ago 1 parent 957be993
README.md +1 -1
1 -
# source-browser
1 +
# Radiant Forge
2 2
3 3
A self-hosted git repository browser, similar to CGit. Single Go binary,
4 4
static HTML, no JavaScript.
5 5
6 6
## Build
main.go +1 -1
23 23
}
24 24
25 25
func main() {
26 26
	listen := flag.String("listen", ":8080", "listen address")
27 27
	scanPath := flag.String("scan-path", ".", "path to scan for git repos")
28 -
	title := flag.String("title", "radiant computer repositories", "site title")
28 +
	title := flag.String("title", "radiant code repositories", "site title")
29 29
	baseURL := flag.String("base-url", "", "base URL prefix (e.g. /git)")
30 30
	nonBare := flag.Bool("non-bare", false, "also scan for non-bare repos (dirs containing .git)")
31 31
	username := flag.String("username", "", "HTTP basic auth username (requires -password)")
32 32
	password := flag.String("password", "", "HTTP basic auth password (requires -username)")
33 33
	flag.Parse()