File tree 1 file changed +24
-0
lines changed 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,10 @@ export default {
29
29
env : "PARSE_SERVER_URL" ,
30
30
help : "URL to your parse server with http:// or https://." ,
31
31
} ,
32
+ "publicServerURL" : {
33
+ env : "PARSE_PUBLIC_SERVER_URL" ,
34
+ help : "Public URL to your parse server with http:// or https://." ,
35
+ } ,
32
36
"clientKey" : {
33
37
env : "PARSE_SERVER_CLIENT_KEY" ,
34
38
help : "Key for iOS, MacOS, tvOS clients"
@@ -145,6 +149,26 @@ export default {
145
149
return opt ;
146
150
}
147
151
} ,
152
+ "liveQuery" : {
153
+ env : "PARSE_SERVER_LIVE_QUERY_OPTIONS" ,
154
+ help : "liveQuery options" ,
155
+ action : function action ( opt ) {
156
+ if ( typeof opt == 'object' ) {
157
+ return opt ;
158
+ }
159
+ return JSON . parse ( opt ) ;
160
+ }
161
+ } ,
162
+ "customPages" : {
163
+ env : "PARSE_SERVER_CUSTOM_PAGES" ,
164
+ help : "custom pages for pasword validation and reset" ,
165
+ action : function action ( opt ) {
166
+ if ( typeof opt == 'object' ) {
167
+ return opt ;
168
+ }
169
+ return JSON . parse ( opt ) ;
170
+ }
171
+ } ,
148
172
"maxUploadSize" : {
149
173
env : "PARSE_SERVER_MAX_UPLOAD_SIZE" ,
150
174
help : "Max file size for uploads." ,
You can’t perform that action at this time.
0 commit comments