Skip to content

Commit

Permalink
Design update for terminal
Browse files Browse the repository at this point in the history
  • Loading branch information
MertJSX committed Aug 26, 2024
1 parent c0963ca commit 8988697
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,15 @@ if (config.get_foldersize_on_start && fs.existsSync(config.folder)) {

if (!abort) {
httpServer.listen(config.port, () => {
console.log(`\nThe server has started on port ${config.port}!`.green);
console.log("IP: ".green + `http://127.0.0.1:${config.port}\n`.yellow);
console.log(`
_______ __ __
/ _____/ / / / /
/ /__ / /__/ /
/ ___/ / ___ /
/ / / / / /
/_/ /_/ /_/ `.cyan.bold, "By MertJSX".underline.brightCyan.italic);

console.log(`\nThe server has started on port ${config.port}!`.gray);
console.log("IP: ".gray + `http://127.0.0.1:${config.port}\n`.yellow);
})
}

0 comments on commit 8988697

Please sign in to comment.