|
@@ -30,6 +30,18 @@ Read the full server guide here: https://parse.com/docs/server/guide
|
|
|
* By default it will use a path of /parse for the API routes. To change this, or use older client SDKs, run `heroku config:set PARSE_MOUNT=/1`
|
|
|
* Deploy it with: `git push heroku master`
|
|
|
|
|
|
+### Getting Started With AWS Elastic Beanstalk
|
|
|
+
|
|
|
+#### With the Deploy to AWS Button
|
|
|
+
|
|
|
+[](https://console.aws.amazon.com/elasticbeanstalk/home?region=us-west-2#/newApplication?applicationName=ParseServer&solutionStackName=Node.js&tierName=WebServer&sourceBundleUrl=https://s3.amazonaws.com/elasticbeanstalk-samples-us-east-1/eb-parse-server-sample/parse-server-example.zip)
|
|
|
+
|
|
|
+#### Without It
|
|
|
+
|
|
|
+* Clone the repo and change directory to it
|
|
|
+* Log in with the [AWS Elastic Beanstalk CLI](https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-install.html), select a region, and create an app: `eb init`
|
|
|
+* Create an environment and pass in MongoDB URI, App ID, and Master Key: `eb create --envvars DATABASE_URI=<replace with URI>,APP_ID=<replace with Parse app ID>,MASTER_KEY=<replace with Parse master key>`
|
|
|
+
|
|
|
### Getting Started Microsoft Azure App Service
|
|
|
|
|
|
#### With the Deploy to Azure Button
|
|
@@ -41,12 +53,6 @@ Read the full server guide here: https://parse.com/docs/server/guide
|
|
|
A detailed tutorial is available here:
|
|
|
[Azure welcomes Parse developers](https://azure.microsoft.com/en-us/blog/azure-welcomes-parse-developers/)
|
|
|
|
|
|
-### Getting Started With AWS Elastic Beanstalk
|
|
|
-
|
|
|
-* Clone the repo and change directory to it
|
|
|
-* Log in with the [AWS Elastic Beanstalk CLI](https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-install.html), select a region, and create an app: `eb init`
|
|
|
-* Create an environment and pass in MongoDB URI, App ID, and Master Key: `eb create --envvars DATABASE_URI=<replace with URI>,APP_ID=<replace with Parse app ID>,MASTER_KEY=<replace with Parse master key>`
|
|
|
-
|
|
|
### Using it
|
|
|
|
|
|
You can use the REST API, the JavaScript SDK, and any of our open-source SDKs:
|