Rename the "stats" CLI command, tool app, and all internal references to "metrics". Add file size tracking from each app's DATA_DIR as a new metric, shown in both the CLI table and web UI. https://claude.ai/code/session_013agP8J1cCfrWZkueZ33jQB
18 lines
490 B
TypeScript
18 lines
490 B
TypeScript
export { cronList, cronLog, cronRun, cronStatus } from './cron'
|
|
export { envList, envRm, envSet } from './env'
|
|
export { logApp } from './logs'
|
|
export {
|
|
configShow,
|
|
infoApp,
|
|
listApps,
|
|
newApp,
|
|
openApp,
|
|
renameApp,
|
|
restartApp,
|
|
rmApp,
|
|
startApp,
|
|
stopApp,
|
|
} from './manage'
|
|
export { metricsApp } from './metrics'
|
|
export { cleanApp, diffApp, getApp, historyApp, pullApp, pushApp, rollbackApp, stashApp, stashListApp, stashPopApp, statusApp, syncApp, versionsApp } from './sync'
|