File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ if (argv.h || argv.help) {
19
19
console . log ( ' Public URL of the üWave HTTP API to connect to. Defaults to "/api".' ) ;
20
20
console . log ( ' SOCKET_URL' ) ;
21
21
console . log ( ' Public URL of the üWave WebSocket API to connect to. Defaults to "/".' ) ;
22
+ console . log ( ' RECAPTCHA_KEY [optional]' ) ;
23
+ console . log ( ' ReCaptcha site key to confirm new registrations.' ) ;
24
+ console . log ( ' The secret key must also be configured on the server side.' ) ;
22
25
console . log ( ) ;
23
26
process . exit ( 0 ) ;
24
27
}
@@ -43,6 +46,9 @@ const config = envSchema({
43
46
type : 'string' ,
44
47
default : 'üWave' ,
45
48
} ,
49
+ RECAPTCHA_KEY : {
50
+ type : 'string' ,
51
+ } ,
46
52
} ,
47
53
} ,
48
54
} ) ;
@@ -52,6 +58,9 @@ app.use(createWebClient({
52
58
apiUrl : config . API_URL ,
53
59
socketUrl : config . SOCKET_URL ,
54
60
title : config . CLIENT_TITLE ,
61
+ recaptcha : config . RECAPTCHA_KEY ? {
62
+ key : config . RECAPTCHA_KEY ,
63
+ } : null ,
55
64
} ) ) ;
56
65
57
66
const server = app . listen ( config . PORT , ( ) => {
You can’t perform that action at this time.
0 commit comments