flimit fixed
This commit is contained in:
parent
99263e2082
commit
21aa1402bc
|
@ -154,6 +154,8 @@ A Go build system with file watchers, output streams and live reload. Run, build
|
|||
open: false // opens the web server in a new tab
|
||||
host: localhost // web server host
|
||||
port: 5000 // wev server port
|
||||
config:
|
||||
flimit: 0 // increases the maximum number of open files - supported only on linux or os x, sudo required
|
||||
projects:
|
||||
- name: printer // project name
|
||||
path: / // project path
|
||||
|
|
|
@ -7,9 +7,9 @@ import (
|
|||
|
||||
type Settings struct {
|
||||
Colors `yaml:"-"`
|
||||
Resources `yaml:"resources,omitempty" json:"resources"`
|
||||
Server `yaml:"server,omitempty" json:"server"`
|
||||
Config `yaml:"config,omitempty" json:"config"`
|
||||
Resources `yaml:"resources" json:"resources"`
|
||||
Server `yaml:"server" json:"server"`
|
||||
Config `yaml:"config" json:"config"`
|
||||
}
|
||||
|
||||
type Config struct {
|
||||
|
|
Loading…
Reference in New Issue