Skip to content

Instantly share code, notes, and snippets.

@atmos
Created November 13, 2010 03:05
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save atmos/675038 to your computer and use it in GitHub Desktop.
Save atmos/675038 to your computer and use it in GitHub Desktop.
god configs for camo.
God.watch do |w|
w.uid = "git"
w.gid = "git"
w.name = "camo"
w.pid_file = "/data/camo/tmp/camo.pid"
w.interval = 30.seconds
w.env = {
"PORT" => '8080',
"CAMO_KEY" => '0x24FEEDFACEDEADBEEFCAFE'
}
w.start = "cd /data/camo && exec /usr/bin/node server.js >> log/camo.stdout.log 2>> log/camo.stderr.log"
w.stop_signal = "TERM"
# retart if memory gets too high
w.transition(:up, :restart) do |on|
on.condition(:memory_usage) do |c|
c.above = 20.megabytes
c.times = 2
end
end
# determine the state on startup
w.transition(:init, { true => :up, false => :start }) do |on|
on.condition(:process_running) do |c|
c.running = true
end
end
# determine when process has finished starting
w.transition([:start, :restart], :up) do |on|
on.condition(:process_running) do |c|
c.running = true
c.interval = 5.seconds
end
# failsafe
on.condition(:tries) do |c|
c.times = 5
c.transition = :start
c.interval = 5.seconds
end
end
# start if process is not running
w.transition(:up, :start) do |on|
on.condition(:process_running) do |c|
c.running = false
end
end
end
# vim:ft=ruby
@Joyjoyzpracha
Copy link

The accompanying notes are an integral part of the Contributor Version against such Participant.

@jeheremy19p
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment