I'm creating a Rails app, and the database (currently using sqlite3) has exceeded 50 MB. This is creating warnings on github when I push, and I reckon now is a good time to start thinking about hosting the db somewhere. Here are a few questions I have to accelerate the process:
Is there a workaround to the github problem? Right now, the db gets pushed and pulled on github, which is nice because everyone on the team can receive changes to the db.
If there isn't a good solution to the git workaround, then is the next logical step to host the db on some external server? And how necessary is this next step?
I started looking into RDS on AWS. What are your experiences hosting the db on something like RDS, or equivalent?
Anything else you'd recommend!
Thanks a lot.