Prettier had never been run in --check mode here before, so this had drifted across most files (markdown tables, long option() chains, line wrapping). Purely formatting, no logic changes - needed so a CI format:check gate can actually pass. Adds .prettierignore for pnpm-lock.yaml specifically: prettier's YAML formatter rewrites every quoted key (single -> double quotes) producing an ~8700-line diff of pure noise on a file pnpm itself owns the formatting of. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
63 lines
1.9 KiB
TypeScript
63 lines
1.9 KiB
TypeScript
import crypto from "node:crypto";
|
|
import fs from "node:fs";
|
|
import path from "node:path";
|
|
import { resolveAppRoot } from "../lib/paths";
|
|
|
|
const DEFAULT_CONFIG_NAME = "triggershell.yml";
|
|
|
|
export interface InitOptions {
|
|
port: number;
|
|
auth: boolean;
|
|
force: boolean;
|
|
}
|
|
|
|
export async function initCommand(
|
|
targetPath: string | undefined,
|
|
opts: InitOptions,
|
|
): Promise<void> {
|
|
const targetDir = path.resolve(process.cwd(), targetPath ?? ".");
|
|
fs.mkdirSync(targetDir, { recursive: true });
|
|
const configPath = path.join(targetDir, DEFAULT_CONFIG_NAME);
|
|
|
|
if (fs.existsSync(configPath) && !opts.force) {
|
|
console.error(`${configPath} already exists. Use --force to overwrite.`);
|
|
process.exitCode = 1;
|
|
return;
|
|
}
|
|
|
|
const templatePath = path.join(
|
|
resolveAppRoot(),
|
|
"templates",
|
|
DEFAULT_CONFIG_NAME,
|
|
);
|
|
const template = fs.readFileSync(templatePath, "utf-8");
|
|
const rendered = template
|
|
.replace("__PORT__", String(opts.port))
|
|
.replace("__AUTH_ENABLED__", opts.auth ? "true" : "false");
|
|
fs.writeFileSync(configPath, rendered);
|
|
console.log(`Created ${configPath}`);
|
|
|
|
const envPath = path.join(targetDir, ".env");
|
|
if (opts.auth) {
|
|
if (fs.existsSync(envPath)) {
|
|
console.log(
|
|
`${envPath} already exists - make sure it sets TRIGGERSHELL_SESSION_SECRET (>= 32 chars).`,
|
|
);
|
|
} else {
|
|
const sessionSecret = crypto.randomBytes(32).toString("hex");
|
|
fs.writeFileSync(
|
|
envPath,
|
|
`TRIGGERSHELL_SESSION_SECRET=${sessionSecret}\n`,
|
|
);
|
|
console.log(`Created ${envPath} (keep this out of version control)`);
|
|
}
|
|
console.log(
|
|
"\nAuth is enabled but no users are configured yet. Add one with:",
|
|
);
|
|
console.log(` triggershell users add <username> --config ${configPath}`);
|
|
}
|
|
|
|
console.log("\nStart the app with:");
|
|
console.log(` triggershell start --config ${configPath}`);
|
|
}
|