No commit activity in last 3 years
No release in over 3 years
You can import an exported zip file into your parse.com app.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

parsecom-import

You can import an exported zip file into your parse.com app.

Installation

$ gem install parse-importer

If you are using rbenv, please don't forget call rehash

$ rbenv rehash

Usage

Set environment variables to connect parse.com

export PARSE_APPLICATION_ID="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
export PARSE_API_KEY="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
export PARSE_MASTER_KEY="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

Call parse-import command.

$ parse-import 50523f10-2b8a-4bb8-83ef-31d2fa71f82d_1585107803_export.zip

Or, give credentials directly

$ parse-import --appid=xxxxx --apikey=xxxxx --masterkey=xxxxx 50523f10-2b8a-4bb8-83ef-31d2fa71f82d_1585107803_export.zip

Note

The behavior of this command is different from importing json files on the web. Though importing on the web is allowed to set objectId and other reserved columns, this command is not. In short, this command changes objectIds and cannot copy some reserved columns.