Ver código fonte

Small fix to Azure secion and update to deploy file to match environment variables

Fabio Cavalcante 9 anos atrás
pai
commit
e92cb3d0ff
2 arquivos alterados com 3 adições e 3 exclusões
  1. 1 1
      README.md
  2. 2 2
      azuredeploy.json

+ 1 - 1
README.md

@@ -42,7 +42,7 @@ Read the full server guide here: https://parse.com/docs/server/guide
 * 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
+### Getting Started With Microsoft Azure App Service
 
 #### With the Deploy to Azure Button
 

+ 2 - 2
azuredeploy.json

@@ -102,11 +102,11 @@
                 "value": "[parameters('mongoConnectionString')]"
               },
             {
-            "name": "PARSE_APP_ID",
+            "name": "APP_ID",
             "value": "[parameters('parseAppId')]"
             },
             {
-            "name": "PARSE_MASTER_KEY",
+            "name": "MASTER_KEY",
             "value": "[parameters('parseMasterKey')]"
             },
             {