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
|
open: false // opens the web server in a new tab
|
||||||
host: localhost // web server host
|
host: localhost // web server host
|
||||||
port: 5000 // wev server port
|
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:
|
projects:
|
||||||
- name: printer // project name
|
- name: printer // project name
|
||||||
path: / // project path
|
path: / // project path
|
||||||
|
|
|
@ -7,9 +7,9 @@ import (
|
||||||
|
|
||||||
type Settings struct {
|
type Settings struct {
|
||||||
Colors `yaml:"-"`
|
Colors `yaml:"-"`
|
||||||
Resources `yaml:"resources,omitempty" json:"resources"`
|
Resources `yaml:"resources" json:"resources"`
|
||||||
Server `yaml:"server,omitempty" json:"server"`
|
Server `yaml:"server" json:"server"`
|
||||||
Config `yaml:"config,omitempty" json:"config"`
|
Config `yaml:"config" json:"config"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Config struct {
|
type Config struct {
|
||||||
|
|
Loading…
Reference in New Issue