GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
PROCLET(1) User Contributed Perl Documentation PROCLET(1)

proclet - foreman for perl

  $ cat Procfile
  memd: memcached -v -p 11211
  plack: plackup -p 9022 -e 'sub { [200, [], ["OK"]] }'
  $ proclet start

proclet is foreman for perl, manages Procfile-based applications.

proclet does not support EXPORT yet.

proclet start is used to run your application directly from the command line.

The following options control how the application is run:

-h, --help
Display help message
-c, --concurrency: Str
The number of each process type to run. The value passed in should be in the format process=num,process=num
-e, --env: Str
An alternate environment file. You can specify more than one file by using: --env file1,file2.
-f, --procfile: Str
An alternate Procfile to load, implies -d at the Procfile root
--color
Colored log
-p, --port: Num
Port number which used as the base for this application. Should be a multiple of 1000

A Procfile should contain both a name for the process and the command used to run it.

  web: bundle exec thin start
  job: bundle exec rake jobs:work

If a .env file exists in the current directory, the default environment will be read from it. This file should contain key/value pairs, separated by =, with one key/value pair per line.

  FOO=bar
  BAZ=qux

If a .foreman file exists in the current directory, default options will be read from it. This file should be in YAML format with the long option name as keys. Example:

  concurrency: alpha=0,bravo=1
  color: 1

As same as foreman, proclet starts to assign from port 5000 by default. and assigns them in blocks of 100 per service in the order used in your Procfile. You can specify an alternate starting port number with the -p option.

Masahiro Nagano <kazeburo {at} gmail.com>

Proclet, <https://github.com/ddollar/foreman>, <http://blog.daviddollar.org/2011/05/06/introducing-foreman.html>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
2022-04-09 perl v5.32.1

Search for    or go to Top of page |  Section 1 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.