Skip to content

Commit a3a461d

Browse files
committed
bin: make ReCaptcha key configurable
1 parent 811bb18 commit a3a461d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

npm/bin/u-wave-web

+9
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ if (argv.h || argv.help) {
1919
console.log(' Public URL of the üWave HTTP API to connect to. Defaults to "/api".');
2020
console.log(' SOCKET_URL');
2121
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.');
2225
console.log();
2326
process.exit(0);
2427
}
@@ -43,6 +46,9 @@ const config = envSchema({
4346
type: 'string',
4447
default: 'üWave',
4548
},
49+
RECAPTCHA_KEY: {
50+
type: 'string',
51+
},
4652
},
4753
},
4854
});
@@ -52,6 +58,9 @@ app.use(createWebClient({
5258
apiUrl: config.API_URL,
5359
socketUrl: config.SOCKET_URL,
5460
title: config.CLIENT_TITLE,
61+
recaptcha: config.RECAPTCHA_KEY ? {
62+
key: config.RECAPTCHA_KEY,
63+
} : null,
5564
}));
5665

5766
const server = app.listen(config.PORT, () => {

0 commit comments

Comments
 (0)