Skip to content

Instantly share code, notes, and snippets.

@toolmantim
Last active December 12, 2015 09:39
Show Gist options
  • Save toolmantim/4753193 to your computer and use it in GitHub Desktop.
Save toolmantim/4753193 to your computer and use it in GitHub Desktop.
@ddollar's foreman Ruby gem is handy for booting a single app's processes, but you can also use foreman as a booter for mutiple foreman apps! Handy if you have apps that work together in a service-oriented way and you're sick of booting them one-at-a-time (or you're using a harness shell script).
app_1: foreman start --root app_1 --port 3000 --env app_1/.env
app_2: foreman start --root app_2 --port 3100 --env app_2/.env
app_3: foreman start --root app_3 --port 3200 --env app_3/.env
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment