chore: add running version to logs

This commit is contained in:
2025-05-13 23:56:53 -07:00
parent 3aa98ac844
commit 63d54819c6
2 changed files with 5 additions and 2 deletions

View File

@@ -796,8 +796,6 @@ docker buildx build \
--pull \ --pull \
--push \ --push \
. .
``` ```
<br /> <br />

View File

@@ -2325,6 +2325,11 @@ const server = http.createServer( ( request, response ) =>
chalk.blueBright( `<msg>` ), chalk.gray( `Server is now running on` ), chalk.blueBright( `<msg>` ), chalk.gray( `Server is now running on` ),
chalk.blueBright( `<ipPublic>` ), chalk.whiteBright.bgBlack( ` ${ envWebIP }:${ envWebPort } ` ), chalk.blueBright( `<ipPublic>` ), chalk.whiteBright.bgBlack( ` ${ envWebIP }:${ envWebPort } ` ),
chalk.blueBright( `<ipDocker>` ), chalk.whiteBright.bgBlack( ` ${ envIpContainer }:${ envWebPort } ` ) ); chalk.blueBright( `<ipDocker>` ), chalk.whiteBright.bgBlack( ` ${ envIpContainer }:${ envWebPort } ` ) );
Log.info( `core`, chalk.yellow( `[initiate]` ), chalk.white( `` ),
chalk.blueBright( `<msg>` ), chalk.gray( `Running TVApp2 version` ),
chalk.blueBright( `<version>` ), chalk.gray( ` ${ version } ` ),
chalk.blueBright( `<release>` ), chalk.gray( ` ${ envAppRelease } ` ) );
}); });
})(); })();