Skip to content

Instantly share code, notes, and snippets.

@benjaminhallock
benjaminhallock / AppDelegate.m
Last active June 5, 2016 16:44
How to Parse + Heroku
First, update your Parse Framework https://parse.com/docs/downloads
### Replace the original Appid/ClientKey with....
Parse.initializeWithConfiguration(ParseClientConfiguration(block: { (configuration: ParseMutableClientConfiguration) -> Void in
configuration.applicationId = "myAppId";
configuration.clientKey = "myClientKey";
//need ngrok to host locally, haven't tried it.
// configuration.server = @"http://localhost:1337/parse";