parse-db-import
This solution is if you need to move away from Parse and build your own backend. This tool allows you to quickly import data exported from Parse into a database supported by active record. Currently it expects the records to be pre-flattened by parse-migrator
See also
Installation
$ gem install parse-db-import
Usage
It's assumed that the database will exist so create the database if that's not the case
createdb sampledb
then
$ bundle exec parse-db-import --path [path] --dbname [database]
Other options
--adapter [postgresql]
--dbuser [user]
--dbpassword [password]
--host [host]
Contributing
- Fork it ( https://github.com/[my-github-username]/parse-db-import/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request