├── .github ├── FUNDING.yml └── workflows │ ├── go.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── _example ├── .env ├── Gemfile ├── Procfile ├── app.psgi ├── web.go └── web.rb ├── export.go ├── go.mod ├── go.sum ├── goreman_test.go ├── images └── design.png ├── log.go ├── main.go ├── proc.go ├── proc_posix.go ├── proc_windows.go └── rpc.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /goreman 2 | /goxz 3 | *.exe 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/README.md -------------------------------------------------------------------------------- /_example/.env: -------------------------------------------------------------------------------- 1 | AUTHOR=mattn 2 | -------------------------------------------------------------------------------- /_example/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'sinatra' 3 | -------------------------------------------------------------------------------- /_example/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/_example/Procfile -------------------------------------------------------------------------------- /_example/app.psgi: -------------------------------------------------------------------------------- 1 | #!perl 2 | 3 | my $app = sub { 4 | [200, [], ["hello $ENV{AUTHOR}"]] 5 | } 6 | -------------------------------------------------------------------------------- /_example/web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/_example/web.go -------------------------------------------------------------------------------- /_example/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/_example/web.rb -------------------------------------------------------------------------------- /export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/export.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/go.sum -------------------------------------------------------------------------------- /goreman_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/goreman_test.go -------------------------------------------------------------------------------- /images/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/images/design.png -------------------------------------------------------------------------------- /log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/log.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/main.go -------------------------------------------------------------------------------- /proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/proc.go -------------------------------------------------------------------------------- /proc_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/proc_posix.go -------------------------------------------------------------------------------- /proc_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/proc_windows.go -------------------------------------------------------------------------------- /rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/goreman/HEAD/rpc.go --------------------------------------------------------------------------------