smithy

commit f4b3cd8fc21920f5ef73ede26e6103d44830f5a6

Author: Honza Pokorny <me@honza.ca>

Add host config

 pkg/smithy/config.go | 2 ++


diff --git a/pkg/smithy/config.go b/pkg/smithy/config.go
index c56efcde3c7c99feb2ffc27c072743ff26a0d426..06e84ac7e8d8491e95fbc2a4d0a64ec943a72b1e 100644
--- a/pkg/smithy/config.go
+++ b/pkg/smithy/config.go
@@ -48,6 +48,7 @@
 type SmithyConfig struct {
 	Title       string `yaml:"title"`
 	Description string `yaml:"description"`
+	Host        string `yaml:"host"`
 	Git         GitConfig
 	Static      struct {
 		Root   string
@@ -188,6 +189,7 @@ func New() SmithyConfig {
 	return SmithyConfig{
 		Title:       "Smithy, a lightweight git force",
 		Port:        3456,
+		Host:        "localhost",
 		Description: "Publish your git repositories with ease",
 	}
 }