Created
September 13, 2010 20:45
-
-
Save meleyal/578005 to your computer and use it in GitHub Desktop.
wesabe startup script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo 'starting mysql' | |
mysqld_safe & | |
echo 'starting pfc' | |
cd ~/code/wesabe/pfc | |
rails server -p 3001 & | |
echo 'starting brcm' | |
cd ~/code/wesabe/brcm-accounts-api | |
script/server & | |
echo 'ok, go!' | |
open http://localhost:3001 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment