File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,21 @@ Read the full server guide here: https://parse.com/docs/server/guide
53
53
A detailed tutorial is available here:
54
54
[ Azure welcomes Parse developers] ( https://azure.microsoft.com/en-us/blog/azure-welcomes-parse-developers/ )
55
55
56
+ ### Getting Started With Scalingo
57
+
58
+ #### With the Scalingo button
59
+
60
+ [ ![ Deploy to Scalingo] ( https://cdn.scalingo.com/deploy/button.svg )] ( https://my.scalingo.com/deploy )
61
+
62
+ #### Without it
63
+
64
+ * Clone the repo and change directory to it
65
+ * Log in with the [ Scalingo CLI] ( http://cli.scalingo.com/ ) and create an app: ` scalingo create my-parse `
66
+ * Use the [ Scalingo MongoDB addon] ( https://scalingo.com/addons/scalingo-mongodb ) : ` scalingo addons-add scalingo-mongodb free `
67
+ * Setup MongoDB connection string: ` scalingo env-set DATABASE_URI='$SCALINGO_MONGO_URL' `
68
+ * By default it will use a path of /parse for the API routes. To change this, or use older client SDKs, run ` scalingo env-set PARSE_MOUNT=/1 `
69
+ * Deploy it with: ` git push scalingo master `
70
+
56
71
### Using it
57
72
58
73
You can use the REST API, the JavaScript SDK, and any of our open-source SDKs:
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " Parse Server Example" ,
3
+ "description" : " An example Parse API server using the parse-server module" ,
4
+ "repository" : " https://github.com/ParsePlatform/parse-server-example" ,
5
+ "logo" : " https://avatars0.githubusercontent.com/u/1294580?v=3&s=200" ,
6
+ "env" : {
7
+ "PARSE_MOUNT" : {
8
+ "description" : " Configure Parse API route." ,
9
+ "value" : " /parse"
10
+ },
11
+ "APP_ID" : {
12
+ "description" : " A unique identifier for your app." ,
13
+ "value" : " "
14
+ },
15
+ "MASTER_KEY" : {
16
+ "description" : " A key that overrides all permissions. Keep this secret." ,
17
+ "value" : " "
18
+ },
19
+ "DATABASE_URI" : {
20
+ "description" : " Connection string for your database." ,
21
+ "value" : " $SCALINGO_MONGO_URL"
22
+ }
23
+ },
24
+ "addons" : [" scalingo-mongodb" ]
25
+ }
You can’t perform that action at this time.
0 commit comments