1
0
Fork 0

Add benchmark startup option for server

This commit is contained in:
Chocobozzz 2021-11-12 11:08:20 +01:00
parent 8db19c959e
commit a9cd881bf8
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 3 additions and 0 deletions

View File

@ -136,6 +136,7 @@ import { VideoViews } from '@server/lib/video-views'
cli
.option('--no-client', 'Start PeerTube without client interface')
.option('--no-plugins', 'Start PeerTube without plugins/themes enabled')
.option('--benchmark-startup', 'Automatically stop server when initialized')
.parse(process.argv)
// ----------- App -----------
@ -324,6 +325,8 @@ async function startApplication () {
logger.info('Web server: %s', WEBSERVER.URL)
Hooks.runAction('action:application.listening')
if (cliOptions['benchmarkStartup']) process.exit(0)
})
process.on('exit', () => {