@reliverse/rse
Version:
@reliverse/rse is your all-in-one companion for bootstrapping and improving any kind of projects (especially web apps built with frameworks like Next.js) — whether you're kicking off something new or upgrading an existing app. It is also a little AI-power
25 lines (24 loc) • 694 B
JavaScript
import { relinka } from "@reliverse/relinka";
import { defineCommand } from "@reliverse/rempts";
export default defineCommand({
meta: {
name: "studio",
description: "Provides information on how to open rseo",
hidden: true
},
run: () => {
relinka("info", "rse Studio", "Allows you to read and edit rseal memory");
relinka("info", "To open the editor, run:", "bun db");
relinka(
"info",
"You can also specify a custom port:",
"bun db --port 4984"
);
relinka(
"info",
"Don't touch the fields like: code, key, githubKey, vercelKey",
"They are encrypted and used by rserify your identity"
);
process.exit(0);
}
});