Skip to content

Instantly share code, notes, and snippets.

@vseventer
Created January 9, 2014 21:41
Show Gist options
  • Save vseventer/8342575 to your computer and use it in GitHub Desktop.
Save vseventer/8342575 to your computer and use it in GitHub Desktop.
Initialize Kinvey for use with AngularJS.
<html ng-app="MyApp">
<script>
var myApp = angular.module('MyApp', ['kinvey']);
myApp.run(function($kinvey) {
$kinvey.init({
appKey : 'App Key',
appSecret : 'App Secret'
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment