- Add .gitignore: exclude compiled binaries, build artifacts, and Helm values files containing real secrets (authentik, prometheus) - Add all Kubernetes deployment manifests (deployment/) - Add services source code: ha-sync, device-inventory, games-console, paperclip, parts-inventory - Add Ansible orchestration: playbooks, roles, inventory, cloud-init - Add hardware specs, execution plans, scripts, HOMELAB.md - Add skills/homelab/SKILL.md + skills/install.sh to preserve Copilot skill - Remove previously-tracked inventory-cli binary from git index Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
11 lines
513 B
JavaScript
11 lines
513 B
JavaScript
#!/usr/bin/env node
|
|
/**
|
|
* Main `bin` functionality.
|
|
*
|
|
* This file is split into a chain of functions (phases), each one adding to a shared state object.
|
|
* This is done so that the next function can either be invoked in-process or, if necessary, invoked in a child process.
|
|
*
|
|
* The functions are intentionally given uncreative names and left in the same order as the original code, to make a
|
|
* smaller git diff.
|
|
*/
|
|
export declare function main(argv?: string[], entrypointArgs?: Record<string, any>): void;
|