Skip to content

Instantly share code, notes, and snippets.

@shedd
Created September 7, 2011 10:50
Show Gist options
  • Save shedd/1200269 to your computer and use it in GitHub Desktop.
Save shedd/1200269 to your computer and use it in GitHub Desktop.
terminitor config for BetDash
# BETDASH DEVELOPMENT ENVIRONMENT
# tab 1: terminal in betdash project
# tab 2: Rails console
# tab 3: tail -f on development log
# tab 4: dev script
before { run 'fgb' }
tab "BetDash", :selected => true do
run "clear"
end
tab "BetDash Console" do
run "clear"
run "script/console"
end
tab "BetDash Development Log" do
run "cd ./log"
run "clear"
run "tail -f development.log"
end
tab "BetDash Dev-Start" do
run "clear"
run "./bin/dev-start"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment