You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,9 +108,9 @@ Alternatively, to deploy manually:
108
108
* Clone the repo and change directory to it
109
109
* Log in with the [Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli) and create an app: `heroku create`
110
110
* 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='<replacewith MongoDB connectionstring>'`
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.
112
112
* 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`
Copy file name to clipboardExpand all lines: app.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@
18
18
"value": "myMasterKey"
19
19
},
20
20
"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.",
0 commit comments