Skip to content

Commit 163cb11

Browse files
committed
Address deploy docs review feedback
1 parent aa0e955 commit 163cb11

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ Alternatively, to deploy manually:
108108
* Clone the repo and change directory to it
109109
* Log in with the [Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli) and create an app: `heroku create`
110110
* Create a MongoDB database, for example with [MongoDB Atlas](https://www.mongodb.com/atlas/database), and copy its connection string
111-
* Configure the database connection: `heroku config:set DATABASE_URI='<replace with MongoDB connection string>'`
111+
* Configure the database connection: `heroku config:set DATABASE_URI=<replace-with-mongodb-connection-string>`; quote or escape special characters as required by your shell.
112112
* 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`
113-
* Configure the public server URL: `heroku config:set SERVER_URL=https://YourAppName.herokuapp.com/parse`
113+
* Configure the public server URL with the same mount path: `heroku config:set SERVER_URL=https://YourAppName.herokuapp.com/parse` or `heroku config:set SERVER_URL=https://YourAppName.herokuapp.com/1`
114114
* Deploy it with: `git push heroku master`
115115

116116
## AWS Elastic Beanstalk

app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"value": "myMasterKey"
1919
},
2020
"DATABASE_URI": {
21-
"description": "MongoDB connection string for this Parse Server deployment, for example a MongoDB Atlas connection string.",
21+
"description": "MongoDB connection string for this Parse Server deployment, for example a MongoDB Atlas connection string. Keep this secret because it can contain credentials.",
2222
"required": true
2323
},
2424
"SERVER_URL": {

0 commit comments

Comments
 (0)