Skip to content

Commit 4240560

Browse files
add instructions for Google App Engine
1 parent ab41269 commit 4240560

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,23 @@ Read the full server guide here: https://parse.com/docs/server/guide
5353
A detailed tutorial is available here:
5454
[Azure welcomes Parse developers](https://azure.microsoft.com/en-us/blog/azure-welcomes-parse-developers/)
5555

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+
5673
### Getting Started With Scalingo
5774

5875
#### With the Scalingo button

app.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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:

0 commit comments

Comments
 (0)