Sha256: 081ecf6b282bffda6b9b937cb150bb2806b36999bfdcf7f3b8883b0c754821ce

Contents?: true

Size: 1.19 KB

Versions: 1

Compression:

Stored size: 1.19 KB

Contents

# 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

  - [parse-migrator](https://github.com/JohnMorales/parse-migrator)
  - [rack-scaffold](https://github.com/mattt/rack-scaffold)

## Installation

```sh
    $ gem install parse-db-import
```


## Usage

```sh
   $  bundle exec parse-db-import --path [path] --dbname [database]
```

### Other options

```ruby
 --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`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
parse-db-import-0.0.1 README.md