flimit fixed

This commit is contained in:
alessio 2016-11-20 18:19:09 +01:00
parent 99263e2082
commit 21aa1402bc
2 changed files with 5 additions and 3 deletions

View File

@ -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

View File

@ -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 {