Allows re-running bootstrap to delete and recreate the superuser and reviq org. Deletes all related records (tokens, sessions, passkeys, etc.) before recreating. Also configures stricli to use kebab-case for CLI flags globally. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
351 B
TypeScript
16 lines
351 B
TypeScript
import { buildApplication } from "@stricli/core";
|
|
import { rootRouteMap } from "./routes/_command.js";
|
|
|
|
export const app = buildApplication(rootRouteMap, {
|
|
name: "reviq",
|
|
versionInfo: {
|
|
currentVersion: "0.0.0",
|
|
},
|
|
scanner: {
|
|
caseStyle: "allow-kebab-for-camel",
|
|
},
|
|
documentation: {
|
|
caseStyle: "convert-camel-to-kebab",
|
|
},
|
|
});
|