ascii art

This commit is contained in:
ThatOneCalculator 2023-07-02 15:17:58 -07:00
parent 71ca2e631e
commit eec54dd6f7
No known key found for this signature in database
GPG key ID: 8703CACD01000000
2 changed files with 15 additions and 13 deletions

View file

@ -29,7 +29,7 @@ const themeColor = chalk.hex("#31748f");
function greet() {
if (!envOption.quiet) {
//#region Calckey logo
//#region Firefish logo
const v = `v${meta.version}`;
console.log(themeColor(" ___ _ _ "));
console.log(themeColor(" / __\\__ _| | ___| | _____ _ _ "));
@ -40,7 +40,7 @@ function greet() {
//#endregion
console.log(
" Calckey is an open-source decentralized microblogging platform.",
" Firefish is an open-source decentralized microblogging platform.",
);
console.log(
chalk.rgb(
@ -48,7 +48,7 @@ function greet() {
136,
0,
)(
" If you like Calckey, please consider starring or contributing to the repo. https://codeberg.org/calckey/calckey",
" If you like Firefish, please consider starring or contributing to the repo. https://codeberg.org/firefish/firefish",
),
);
@ -58,8 +58,8 @@ function greet() {
);
}
bootLogger.info("Welcome to Calckey!");
bootLogger.info(`Calckey v${meta.version}`, null, true);
bootLogger.info("Welcome to Firefish!");
bootLogger.info(`Firefish v${meta.version}`, null, true);
}
/**
@ -81,7 +81,7 @@ export async function masterMain() {
process.exit(1);
}
bootLogger.succ("Calckey initialized");
bootLogger.succ("Firefish initialized");
if (!envOption.disableClustering) {
await spawnWorkers(config.clusterLimit);

View file

@ -1,14 +1,16 @@
const chalk = require("chalk");
const themeColor = chalk.hex("#31748f");
console.log(themeColor(" ___ _ _ "));
console.log(themeColor(" / __\\__ _| | ___| | _____ _ _ "));
console.log(themeColor(" / / / _` | |/ __| |/ / _ | | |"));
console.log(themeColor("/ /__| (_| | | (__| < __/ |_| |"));
console.log(themeColor("\\____/\\__,_|_|\\___|_|\\_\\___|\\__, |"));
console.log(themeColor(" (___/ "));
console.log(themeColor(" ▄▄▄▄▄▄▄ ▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄ ▄▄▄▄▄▄▄ ▄▄ ▄▄ ◯ "));
console.log(themeColor("█ █ █ ▄ █ █ █ █ █ █ █ █ █ ○ ▄ ▄"));
console.log(themeColor("█ ▄▄▄█ █ █ █ █ █ ▄▄▄█ ▄▄▄█ █ ▄▄▄▄▄█ █▄█ █ ⚬ █▄▄ █▄▄ "));
console.log(themeColor("█ █▄▄▄█ █ █▄▄█▄█ █▄▄▄█ █▄▄▄█ █ █▄▄▄▄▄█ █ ▄▄▄▄▄▄ ▄"));
console.log(themeColor("█ ▄▄▄█ █ ▄▄ █ ▄▄▄█ ▄▄▄█ █▄▄▄▄▄ █ ▄ █ █ █ █▄▄"));
console.log(themeColor("█ █ █ █ █ █ █ █▄▄▄█ █ █ █▄▄▄▄▄█ █ █ █ █ █ ● ● █"));
console.log(themeColor("█▄▄▄█ █▄▄▄█▄▄▄█ █▄█▄▄▄▄▄▄▄█▄▄▄█ █▄▄▄█▄▄▄▄▄▄▄█▄▄█ █▄▄█ ▀▄▄▄▄▄▄▀"));
console.log(" Currently building Calckey!");
console.log(" Currently building Firefish!");
console.log(
chalk.rgb(255, 136, 0)(" Hang on for a moment, as this may take a while."),
);