File tree 2 files changed +29
-0
lines changed
2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,23 @@ 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
+
57
+ ### Getting Started With Google App Engine
58
+
59
+ 1 . Clone the repo and change directory to it
60
+ 1 . Create a project in the [ Google Cloud Platform Console] ( https://console.cloud.google.com/ ) .
61
+ 1 . [ Enable billing] ( https://console.cloud.google.com/project/_/settings ) for your project.
62
+ 1 . Install the [ Google Cloud SDK] ( https://cloud.google.com/sdk/ ) .
63
+ 1 . Setup a MongoDB server. You have a few options:
64
+ 1 . Create a Google Compute Engine virtual machine with [ MongoDB pre-installed] ( https://cloud.google.com/launcher/?q=mongodb ) .
65
+ 1 . Use [ MongoLab] ( https://mongolab.com/google/ ) to create a free MongoDB deployment on Google Cloud Platform.
66
+ 1 . Modify ` app.yaml ` to update your environment variables.
67
+ 1 . Delete ` Dockerfile `
68
+ 1 . Deploy it with ` gcloud preview app deploy `
69
+
70
+ A detailed tutorial is available here:
71
+ [ Running Parse server on Google App Engine] ( https://cloud.google.com/nodejs/resources/frameworks/parse-server )
72
+
56
73
### Getting Started With Scalingo
57
74
58
75
#### With the Scalingo button
Original file line number Diff line number Diff line change
1
+ runtime : nodejs
2
+ vm : true
3
+
4
+ env_variables :
5
+ # --REQUIRED--
6
+ DATABASE_URI : mongodb://localhost:27017/dev
7
+ APP_ID : <your-app-id>
8
+ MASTER_KEY : <your-master-key>
9
+ # --OPTIONAL--
10
+ # FILE_KEY: <your-file-key>
11
+ # PARSE_MOUNT: /parse
12
+ # CLOUD_CODE_MAIN:
You can’t perform that action at this time.
0 commit comments