Postgres / postgreSQL FATAL: database "ew_dev" does not exist

I try to run echowaves and work on mac os x 10.6.4 and I followed all the instructions here https://github.com/echowaves/echowaves successfully but when I run rails s I get the following FATAL: database "ew_dev" does not exist error FATAL: database "ew_dev" does not exist Do I need to create a database? If so, how?

thanks

+4
source share
1 answer

You are lacking:

 rake db:create:all 
+14
source

All Articles