The blog has moved to http://jessehouse.com/ ... Many google searches point here so I am leaving it operational, but there will be no new posts.

Sunday, May 3, 2009

bash scirpt to launch rails development environment

here is a bash script I put together to launch my rails development environment, i got tired of opening multiple terminal windows and cd to the project dir, this script
  • launches script/server in a terminal window
  • launches a new terminal and cd to the trunk
  • launches firefox at http://localhost:3000 with a specific firefox profile
  • and launches Komodo Edit - go ahead and pick the editor of your choice
this works on Ubuntu, probably on other Linux distro's that use Gnome

#!/bin/bash
directory="/home/YOUR_USER_NAME/projects/YOUR_PROJECT_DIR/trunk"
command="script/server"
title_dev="Dev_Trunk"
title_running="Running_Trunk"
profile2="P2"
firefox_profile="p2"
clear
echo ""
echo "launch script/server"
gnome-terminal --working-directory=$directory --title=$title_running --command=$command --profile=$profile2
echo "launch terminal at trunk"
gnome-terminal --working-directory=$directory --name=$title_dev --title=$title_dev
echo "launch firefox at localhost"
firefox http://localhost:3000 -P $firefox_profile -no-remote &
echo "launch komodo edit"
/home/YOUR_USER_NAME/applications/Komodo-Edit-5/bin/komodo &
echo -e "\033[1mRails development in effect...\033[0m"
echo ""
view raw gistfile1.sh hosted with ❤ by GitHub


I saved this in a file ~/scripts/launch_YOUR_PROJECT.sh
to execute this open a terminal and type ~$ bash ./scripts/launch_YOUR_PROJECT.sh
or create a symlink in your home directory

ln -s /home/YOUR_USER_NAME/scripts/launch_YOUR_PROJECT.sh launch_YOUR_PROJECT
view raw gistfile1.sh hosted with ❤ by GitHub


then execute using ~$ bash launch_YOUR_PROJECT

NOTE: in theory you should not need to even specify bash at the command prompt, when I did not I received the following error "bash: launch_YOUR_PROJECT: command not found"
running 'which bash' returns '/bin/bash' which is specified in the shell script?, something to look into later.

No comments: