p4sh4
p4sh4

Reputation: 3291

Open-sourcing code with Parse.com client key and application id safe?

I want to put my application that uses Parse on Github. Should I remove my application id and client key? Parse documentation says that "The application ID and client key are not secret, and by themselves they do not secure an app." I'd rather leave them so if people compile the app the database would be there and working, but I'm worried about the security of this, especially since it exposes my client id and I have some other apps on Parse under this account. How is it usually done?

Upvotes: 2

Views: 444

Answers (1)

Timothy Walters
Timothy Walters

Reputation: 16874

You can provide an initial data-set with sample data as a JSON or CSV file for people to import, or include a Cloud Function that does the initial creation of all the classes if you just want empty tables.

I would recommend against including your own keys as you'll be liable if they exceed the limits of a free database.

Upvotes: 2

Related Questions