I’m really new at Ruby on Rails development. I’m reading Head First Rails and it says that Rails uses SQLite3 as its database system.
How exactly would I go about uploading my website/application so the world can use it?
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.
Rails uses sqlite3 by default, though you can edit your
database.ymlfile to use a different adaptor (mysql, postgres, etc.) if you’d like. It’s not recommended to deploy to production using sqlite3 as your database due to performance issues, though small apps would be ok.