I get the following error, when trying to generate an app.
I have a database.yml with my db login info, but not sure what this error is exactly. Does anyone know what it is?
I assume it is verify login to the test db.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Make sure that your db username and password are configured for the
developmentenvironment, not just thetestenvironment. Initial rails application setup is there.The
testdatabase is used by tests, such asrake specorrake testand thedevelopmentdatabase is used when you are working with rails such asrails generateorrails console.A typical setup is below: