File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change 5
5
"logo" : " https://avatars0.githubusercontent.com/u/1294580?v=3&s=200" ,
6
6
"keywords" : [" node" , " express" , " parse" ],
7
7
"env" : {
8
- "PARSER_SERVER_URL" : {
9
- "description" : " URL to your parse server with http:// or https://" ,
10
- "required" : true
11
- },
12
8
"PARSE_MOUNT" : {
13
9
"description" : " Configure Parse API route." ,
14
10
"value" : " /parse"
Original file line number Diff line number Diff line change @@ -11,12 +11,11 @@ if (!databaseUri) {
11
11
}
12
12
13
13
var api = new ParseServer ( {
14
- serverURL : process . env . PARSE_SERVER_URL ,
15
14
databaseURI : databaseUri || 'mongodb://localhost:27017/dev' ,
16
15
cloud : process . env . CLOUD_CODE_MAIN || __dirname + '/cloud/main.js' ,
17
16
appId : process . env . APP_ID || 'myAppId' ,
18
17
masterKey : process . env . MASTER_KEY || '' , //Add your master key here. Keep it secret!
19
- serverUrl : process . env . SERVER_URL || 'http://localhost:1337' // Don't forget to change to https if needed
18
+ serverURL : process . env . SERVER_URL || 'http://localhost:1337' // Don't forget to change to https if needed
20
19
} ) ;
21
20
// Client-keys like the javascript key or the .NET key are not necessary with parse-server
22
21
// If you wish you require them, you can set them as options in the initialization above:
You can’t perform that action at this time.
0 commit comments