README.md in parse-db-import-0.0.1 vs README.md in parse-db-import-0.0.2
- old
+ new
@@ -1,6 +1,6 @@
-# Parse-Db-Import
+# 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](https://github.com/JohnMorales/parse-migrator)
See also
@@ -14,10 +14,16 @@
```
## Usage
+It's assumed that the database will exist so create the database if that's not the case
+
+`createdb sampledb`
+
+then
+
```sh
$ bundle exec parse-db-import --path [path] --dbname [database]
```
### Other options
@@ -26,9 +32,10 @@
--adapter [postgresql] #(mysql, mysql2, postgresql or sqlite3 defaults to postgresql)
--dbuser [user] #(optional, will use current account)
--dbpassword [password] #(optional, will use current account)
--host [host] #(optional, will use 'localhost')
```
+
## Contributing
1. Fork it ( https://github.com/[my-github-username]/parse-db-import/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)