Created
September 25, 2012 10:00
-
-
Save dv/3780996 to your computer and use it in GitHub Desktop.
Rake task to start PostgreSQL on Mac OS X
This file contains 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
# Usage: | |
# rake db | |
desc "Start Postgresql" | |
task :db do | |
exec "postgres -D /usr/local/var/postgres" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment