Skip to content

Commit

Permalink
chore: update boot (taiymeize)
Browse files Browse the repository at this point in the history
  • Loading branch information
taiyme committed Apr 24, 2024
1 parent d215c8b commit 214f1ae
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/backend/src/boot/entry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { workerMain } from './worker.js';

import 'reflect-metadata';

process.title = `Misskey (${cluster.isPrimary ? 'master' : 'worker'})`;
process.title = `taiyme (${cluster.isPrimary ? 'master' : 'worker'})`;

Error.stackTraceLimit = Infinity;
EventEmitter.defaultMaxListeners = 128;
Expand Down
10 changes: 5 additions & 5 deletions packages/backend/src/boot/master.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ function greet() {
console.log(' ' + chalk.gray(v) + themeColor(' |___|\n'.substring(v.length)));
//#endregion

console.log(' Misskey is an open-source decentralized microblogging platform.');
console.log(chalk.rgb(255, 136, 0)(' If you like Misskey, please donate to support development. https://www.patreon.com/syuilo'));
console.log(' taiyme is an OSS forked from Misskey.');
console.log(chalk.rgb(255, 136, 0)(' If you like taiyme, please donate to support development. https://www.patreon.com/taiy'));

console.log('');
console.log(chalkTemplate`--- ${os.hostname()} {gray (PID: ${process.pid.toString()})} ---`);
}

bootLogger.info('Welcome to Misskey!');
bootLogger.info(`Misskey v${meta.version}`, null, true);
bootLogger.info('Welcome to taiyme!');
bootLogger.info(`taiyme v${meta.version}`, null, true);
}

/**
Expand All @@ -69,7 +69,7 @@ export async function masterMain() {
process.exit(1);
}

bootLogger.succ('Misskey initialized');
bootLogger.succ('taiyme initialized');

if (envOption.disableClustering) {
if (envOption.onlyServer) {
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/boot/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import { tmsFlaskStore } from '@/tms/flask-store.js';
import { tmsStore } from '@/tms/store.js';

export async function common(createVue: () => App<Element>) {
console.info(`Misskey v${version}`);
console.info(`taiyme v${version}`);

if (_DEV_) {
console.warn('Development mode!!!');
Expand Down

0 comments on commit 214f1ae

Please sign in to comment.