Skip to content

Commit be9fd47

Browse files
author
Leo Chan
committed
Added parse code
1 parent a61b903 commit be9fd47

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

parse/cloud/main.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
// Use Parse.Cloud.define to define as many cloud functions as you want.
3+
// For example:
4+
Parse.Cloud.define("hello", function(request, response) {
5+
response.success("Hello world!");
6+
});

parse/config/global.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"applications": {
3+
"_default": {
4+
"link": "code2014"
5+
},
6+
"code2014": {
7+
"applicationId": "pkbkdUru3c58aGvO3PO7E3yhvqdt4qylAQZ3qsHE",
8+
"masterKey": "Zkmr3j79g3THTAnvSWT5gWSy1fhSqIatrkou900W"
9+
}
10+
}
11+
}

parse/public/index.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
<html>
3+
<head>
4+
<title>My ParseApp site</title>
5+
</head>
6+
<body>
7+
Hello World!
8+
</body>
9+
</html>

0 commit comments

Comments
 (0)